79450308

Date: 2025-02-19 05:55:25
Score: 2.5
Natty:
Report link

It seems that Facebook's applications for generating Instagram tokens do not always work correctly. After trying multiple methods without success, I decided to inspect the blank page where the token should appear.

How I Found the Token:

  1. Open Developer Tools (Inspect) in your browser (F12 or right-click > Inspect).

  2. Search for IGAA in the page's source code (Ctrl + F).

  3. Alternatively, go to the Network tab and look at the response of the first request after attempting to generate the token. The token should appear there.

Even though the page might be blank, the token is sometimes still present in the response.

This method worked for me when the standard process failed. Hopefully, it helps others facing the same issue!

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: Markdevelop

79450302

Date: 2025-02-19 05:52:25
Score: 1
Natty:
Report link

Run the following command to update all dependencies:

flutter pub upgrade --major-versions

Then, clean and rebuild:

flutter clean
flutter pub get
flutter build web
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tanu Purohit

79450285

Date: 2025-02-19 05:42:23
Score: 2
Natty:
Report link

The latest version Tailwindcss@4 does not support -> npx tailwindcss init

Installation Using PostCSS

I installed the Tailwindcss@3 version , the command is running fine . Steps :-

npm init -y

npm install -D tailwindcss@3 @tailwindcss/postcss postcss

npx tailwindcss init -p

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

79450281

Date: 2025-02-19 05:40:23
Score: 2
Natty:
Report link

Because of the strict mode on React Application if you remove strict mode it will run only once. but this wont be a problem when you build the appilcation and run it as production <React.StrictMode>
</React.StrictMode>`

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

79450276

Date: 2025-02-19 05:35:21
Score: 0.5
Natty:
Report link

PHP/Nginx Large File Handling Configuration

This guide provides a comprehensive solution for handling large file uploads (>2GB) through PHP and Nginx APIs.

Common Issues

Server Configuration

PHP Configuration (php.ini)

; File upload limits
post_max_size = 4000M
upload_max_filesize = 4000M
memory_limit = -1

; Timeouts
max_execution_time = 300
max_input_time = 300

; Buffer settings
output_buffering = Off
zlib.output_compression = Off

; Error reporting for debugging
error_reporting = E_ALL
display_errors = On
log_errors = On

Nginx Configuration (nginx.conf)

http {
    # Client body size
    client_max_body_size 4000M;
    
    # Timeouts
    fastcgi_read_timeout 300;
    fastcgi_send_timeout 300;
    proxy_read_timeout 300;
    
    # Buffer sizes
    client_body_buffer_size 128k;
    client_header_buffer_size 1k;
}

PHP-FPM Configuration

; Timeout settings
request_terminate_timeout = 300

; Slow log configuration
slowlog = /var/log/php-fpm/slow.log
request_slowlog_timeout = 60
Reasons:
  • Blacklisted phrase (1): This guide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: sumon mia

79450274

Date: 2025-02-19 05:35:21
Score: 1
Natty:
Report link

Passing INotifyDataErrorInfo Errors into Nested User Controls in WPF

To pass INotifyDataErrorInfo validation errors into nested user controls in WPF, ensure that your ViewModel implements INotifyDataErrorInfo and binds to the nested control’s DataContext. Use Binding.Validation.Errors in XAML or propagate errors via Validation.Errors in DependencyProperties.

Example:

Implement INotifyDataErrorInfo in the parent ViewModel. Bind DataContext of the nested UserControl to the relevant property. Use ValidatesOnNotifyDataErrors=True in bindings. If issues persist, consider Command Binding or explicit error propagation. Let me know if you need more details!

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

79450268

Date: 2025-02-19 05:33:21
Score: 0.5
Natty:
Report link

This was asked quite a while back - but I thought that I will answer since it came up in related google search - as of now - you can still either write it yourself or use a library (such as syncfusion range slider that is packed with nice features including this which they call "range selector").

I am not affiliated with them but they have a nice set of packages, and you will be able to use them for free under the community license if you fit the terms (afaik - up to 5 developers in company and up to 1 million USD revenue per year allow you to get it for free).

Have fun

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

79450263

Date: 2025-02-19 05:29:20
Score: 3
Natty:
Report link

In my generated pdf that is generated by pdfMake ∇ ∃ ∀ symbols not supported in generated pdf

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

79450258

Date: 2025-02-19 05:25:18
Score: 6 🚩
Natty:
Report link

Why don't you change android:tint in ic_brightness_low.xml?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Why don't you
  • Low reputation (1):
Posted by: Manabu Nakamura

79450240

Date: 2025-02-19 05:11:16
Score: 2
Natty:
Report link
  1. show the css properties of parent component in which #bartender or #drink could be.
  2. show the code how your are changing the styles propertiess onclick
  3. also the html structure of bartender drink and its parents
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sujit Kumar

79450228

Date: 2025-02-19 05:04:14
Score: 3
Natty:
Report link

The docs don't recommend any specific way of organizing your tests. Some of their examples assumably show tests living outside of the component's directory. It comes down to personal preference.

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

79450188

Date: 2025-02-19 04:43:11
Score: 1.5
Natty:
Report link

Here's a very real possibility for your hanging cfdocument: are you running the ColdFusion Standard edition license?

If so, you probably had another request running that was ALSO doing either a cfdocument or any of several other CFML tags which are single-threaded (with each other) in that edition. If such another request was running long--taking a long time to do a cfdocument itself, for instance--then that will have held up even this simplest cfdocument test you had. And tour restart of CF killed that other long-running request, thus allowing yours to run as expected.

(I realize this question is several years old, and the asker may have moved on long ago. I am offering this now as much for others who may find/have the same question.)

To clarify, starting with CF8, Adobe implemented something called the Enterprise Feature Router--in the ColdFusion Standard edition license. It does NOT apply to the ColdFusion Enterprise or free Developer or Trial editions. With the EFR, all requests that use any of several documented features are single-threaded: only one request at a time can run ANY of those features.

Adobe never documented the tags, but they list several "features" which show being "restricted" in a column of the CF Buying Guide document. See the paragraph below the table of features, which says:

Restricted features in ColdFusion Standard Edition: Enterprise features run through the Enterprise Feature Router (EFR). These features run in the Standard edition. However, all features running through the EFR are limited to one shared simultaneous request.

Among the most common tags (or their script equivalents) where people hit this issue are indeed CFDOCUMENT, and another is the related CFHTMLTOPDF. Still others are less-used: including CFPRINT and CFPRESENTATION. And while the buying guide refers to "pdf manipulation" as one of the "restricted" feature, in have not found any of the many CFPDF tag's actions to be EFR-limited.

Bottom line: if any one request takes a very long time to run--while running ANY such a "restricted" tag--then that request will hold up ANY OTHER requests trying to run at the same time, if those requests also try to run ANY of these "restricted" tags.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Me too answer (2.5): have the same question
  • Contains question mark (0.5):
  • High reputation (-1):
Posted by: charlie arehart

79450186

Date: 2025-02-19 04:43:11
Score: 1
Natty:
Report link

my DB2 is v11.5.7 assume UNIQUEID is the PK of target table

Convert

DELETE FROM targetTable tt
INNER JOIN referenceTable rt ON rt.fk = tt.fk
AND ...
AND tt.UNIQUEID = rt.UNIQUEID 

Into

DELETE FROM targetTable x
WHERE EXISTS (SELECT * FROM targetTable
INNER JOIN referenceTable rt ON ON rt.fk = tt.fk
AND ...
AND tt.UNIQUEID = rt.UNIQUEID);

P.S refer to https://www.ibm.com/docs/en/i/7.4?topic=subqueries-example-correlated-subquery-in-delete-statement

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

79450185

Date: 2025-02-19 04:42:11
Score: 2.5
Natty:
Report link

hey brian my my name is Richard Calo. I own a successful contracting company in Cincinnati Ohio. first things first do not hire a handyman the fact that you already went up there and inspected it. Yourself was the best thing you could do the second thing you need to do is contact your home owners insurance and third thing you need to do is start looking for recommended companies roofing companies that are licensed paying for out-of-pocket you’re looking at a pretty penny depending on the size of your home and how old your shingles are. It sounds like you might need a replacement. I do not believe in patchwork, especially on the roof or any exterior work messes with the structure itself and the way shingles are laid to replace and repair diy I know it’s done and people have done it. I highly do not recommend it.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Richard Calo

79450183

Date: 2025-02-19 04:40:10
Score: 2
Natty:
Report link

Type safe navigation is best for now ,although there are various methods for navigation you can learn type safe navigation it's a good starting point to understand compose navigation with making sure how data parameters are passed to next screen if needed with null safety, then you can move on to nested navigation and explore different libraries available for navigation. But for now just stick to type safe nav and understand its basics.

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

79450182

Date: 2025-02-19 04:40:10
Score: 2
Natty:
Report link

[www.ohsofresh.store## Also Fresh appareldrakogang

store portal webpage

##]1

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

79450180

Date: 2025-02-19 04:38:10
Score: 2
Natty:
Report link

We have to refer this below Documentation, They mentioned for Add UI controls to the map

https://www.here.com/docs/bundle/maps-api-for-javascript-developer-guide/page/topics/react-practices.html

<link rel="stylesheet" type="text/css" href="https://js.api.here.com/v3/3.1/mapsjs-ui.css" />
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Arunraj Maripandiyan

79450168

Date: 2025-02-19 04:26:07
Score: 2
Natty:
Report link

Unfortunately, you can't change the response headers for files served by Google Drive. This means you won't be able to adjust the Content-Type or CORS settings to suit your needs.

things you can try out :

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

79450163

Date: 2025-02-19 04:24:07
Score: 2.5
Natty:
Report link

In WordPress, making an AJAX request is slightly different due to the way the platform handles backend requests. Let's walk through an example where we perform an AJAX request in a WordPress blog post to fetch a "Hello World" message using the WordPress AJAX API.

https://sknetking9.blogspot.com/2021/03/how-to-call-ajax-in-wordpress.html

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

79450151

Date: 2025-02-19 04:12:05
Score: 3.5
Natty:
Report link

I trying now to find solution, No have any way

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

79450128

Date: 2025-02-19 03:48:00
Score: 5
Natty: 4.5
Report link

Learn more about HTML CSS Interview Question

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

79450126

Date: 2025-02-19 03:48:00
Score: 2
Natty:
Report link

You can use the Serializable isolation level in your transactions.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: giang le huynh

79450124

Date: 2025-02-19 03:45:59
Score: 5
Natty: 7
Report link

I just want to say thank you for the answer, it help me get to my solution.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Blacklisted phrase (1): help me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AKK

79450112

Date: 2025-02-19 03:33:56
Score: 1
Natty:
Report link

@Eternal Dreamer's Solution did solve a big fraction of the Issue. Additionally, I went over the Documentation of react-navigation/native at https://reactnavigation.org/ to learn how to effectively use the Stack Navigator. Summarized up I:

  1. Moved const Stack = createStackNavigator(); out of my React components like export default function App(){...}, as suggested
  2. Leveraged the use of navigation.goBack() and .popTo() as these functions discard loaded pages from the Stack, hence freeing memory
  3. Reducing the amount of nested Navigators in my project. Example: I only kept one for defining many settings-options routes, which only have to be loaded, when the main Settings screen is opened.
  4. Reduced the amount of const *name* = useNavigation() calls in different components like a custom-header and migrated to passing a navigation element to such elements via their definition. Example: export const *ExampleHeader* = ({ navigation }: { navigation: NativeStackNavigationProp<any> }) => { return *The Headers Options*

In the end, the Application will always consume a bit of memory when rendering new components or a new page.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Eternal
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: BrightLights

79450102

Date: 2025-02-19 03:23:55
Score: 3.5
Natty:
Report link

Here’s a useful tool I created that allows you to obtain high-quality icons simply by using the app's name or a webpage link. You might want to check it out: geticon.online.

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trent

79450098

Date: 2025-02-19 03:20:54
Score: 2.5
Natty:
Report link

The current doubts have been resolved. The official statement is that this is the expected behavior with a loader. Since the loader may take a long time to run, the useNavigate hook is re-rendered, which is why an additional log appears in the console. The re-rendering of the useNavigate hook ensures that navigations are performed against the correct location.

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

79450096

Date: 2025-02-19 03:17:54
Score: 3.5
Natty:
Report link

No se cual es motivo acabo de abrir la aplicacion y me salio ese error

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yan Rodríguez

79450088

Date: 2025-02-19 03:11:53
Score: 1
Natty:
Report link

Add this to vercel.json. I initially had the routes key as well because I am doing client side routing with react router dom

{
  "builds": [
    {
      "src": "package.json",
      "use": "@vercel/static-build",
      "config": {
        "distDir": "dist"
      }
    }
  ]
}

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

79450084

Date: 2025-02-19 03:01:51
Score: 2
Natty:
Report link

You could try put state in the the Routes.razor

<ShoppingCartState>
    <Router AppAssembly="typeof(Program).Assembly">
...
    </Router>
</ShoppingCartState>

By the way how do you wrap the components? what difference between <ShoppingCartPage> and <ShoppingCart>?

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Qiang Fu

79450082

Date: 2025-02-19 02:59:51
Score: 3.5
Natty:
Report link

I think before I was calling wezterm ssh. Recently I've just been using ssh. I believe this was the issue.

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

79450081

Date: 2025-02-19 02:58:50
Score: 4
Natty:
Report link

Here is with username and password

var localHostElasticURL= "http://localhost:9200";
  string indexFormat = "stackOverFlowTestindex";
  Log.Logger = new LoggerConfiguration()
      .Enrich.FromLogContext()
      .Enrich.WithExceptionDetails()
      .Enrich.WithProperty("Environment", environment)
      .WriteTo.Elasticsearch(new[] { new Uri(localHostElasticURL) },
      options =>
      {
          options.DataStream = new DataStreamName(indexFormat);
          options.TextFormatting = new EcsTextFormatterConfiguration();
          options.BootstrapMethod = BootstrapMethod.Failure;
          options.ConfigureChannel = channelOptions =>
          {
              channelOptions.BufferOptions = new BufferOptions();
          };
      },
      configureTransport =>
      {
            configureTransport.Authentication(new BasicAuthentication("username", "password"));
            configureTransport.ServerCertificateValidationCallback((_, _, _, _) => true);
      })
      .ReadFrom.Configuration(configuration)
      .CreateLogger();

  host.UseSerilog(Log.Logger, true);

but anyone can help with indexFormat like be-logs-{0:yyyy.MM} to always create new index each month and have alias like be-logs.

Reasons:
  • Blacklisted phrase (1): stackOverFlow
  • RegEx Blacklisted phrase (3): anyone can help
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ros Sokcheanith

79450073

Date: 2025-02-19 02:51:49
Score: 3.5
Natty:
Report link

I may have solved the issue. Instead of 'Shell path_to_exe' I have used ActiveWorkbook.FollowHyperlink.

If anyone could advise the how to do this with Shell that would satisfy my curiosity about the method that would have worked with Shell. cheers

Reasons:
  • Blacklisted phrase (1): cheers
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: flow'd

79450072

Date: 2025-02-19 02:51:48
Score: 4
Natty:
Report link

please provide more details: a) what is the rule to choose the end_date? For the 1st record in your output, why did you choose "9/20/2024" instead of "5/17/2024" which is the date associated with "Seatle" (2nd row from input)? b) why does your output return the 3rd record, with "Dalas" and "Dalas"? considering that for "Las Vegas"(as physical) you didn't create a similar record (LA and LA). I believe that the 3rd record should not exist.

Reasons:
  • RegEx Blacklisted phrase (2.5): please provide
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Idoneus

79450071

Date: 2025-02-19 02:50:48
Score: 1.5
Natty:
Report link

You can add the className bg-blue-(50 | 500 | whatever weight) to override it prior to compilation.

<button className="bg-blue-500" />

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

79450061

Date: 2025-02-19 02:43:47
Score: 1.5
Natty:
Report link

In my case, I have used code below to solve the issue of swipe gestures.

Navigator.push(context, CupertinoPageRoute(builder: (context) => MyPage()),);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: zx goh

79450058

Date: 2025-02-19 02:41:47
Score: 1
Natty:
Report link

To me, I want to display a video (no autoplay, display controls). The code below works fine on laptop and Android mobile devices but not with IOS devices:

<video controls>
  <source :src="videoUrl" type="video/mp4" />
</video>

By simply adding #t=0.001 at the end of the video file URL, we signal the browser to skip the first millisecond of video, force the browser to preload and display the specified frame.

<video controls>
  <source :src="`${videoUrl}#t=0.001`" type="video/mp4" />
</video>
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nguyen Quoc Bao

79450049

Date: 2025-02-19 02:32:45
Score: 1.5
Natty:
Report link

.env file:

EXAMPLE=abc

.sh file:

set -a
source .env
set +a

echo $EXAMPLE
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: happy

79450047

Date: 2025-02-19 02:29:45
Score: 0.5
Natty:
Report link

AFAIK there's no nice way to reference other formula columns.

See the answer here showing that you need to fully repeat the formulas in the difference column.

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

79450046

Date: 2025-02-19 02:26:44
Score: 4.5
Natty: 5
Report link

if ((res = SMTManagerAPIFactory.Initialize(null)) != MTRetCode.MT_RET_OK)
Here res=not fount.The DLLs are 64 bit and they placed in lib folder. Reference is also added.Any other solution?

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ashna

79450041

Date: 2025-02-19 02:19:42
Score: 7 🚩
Natty: 6
Report link

i have same problem missing imports of IonicModule. Fixed add this line in provider's main

importProvidersFrom(IonicModule.forRoot({})),

see official guide:

https://github.com/ionic-team/ionic-angular-standalone-codemods/blob/main/apps/angular/ionic-angular-standalone/src/main.ts

Reasons:
  • Blacklisted phrase (1): i have same problem
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): i have same problem
  • Low reputation (1):
Posted by: Franco Emanuel Crisci

79450037

Date: 2025-02-19 02:18:42
Score: 2.5
Natty:
Report link

Locate the .editorConfig file and ensure your indent value is correctly set there. Make sure that you check root of your project directory.

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

79450028

Date: 2025-02-19 02:06:39
Score: 1
Natty:
Report link
from aiogram.filters import StateFilter

@text_msg_router.message(StateFilter(UserState.Dialogue, ModeState.Text))
async def multistate_handler(message: Message, state: FSMContext):
    print(await state.get_state())
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Andrey

79450015

Date: 2025-02-19 01:57:38
Score: 2
Natty:
Report link

How are you? The NameError occurs because the global statement is incorrectly placed. In Python, the global keyword is used to declare that a variable inside a function refers to a global variable. However, in this case, the variable is being accessed at the class level, not within a function. Therefore, the variable __global_object_in_module is not recognized as a global variable in the context of the class. The solutiona is as follow. To resolve this issue, you can define the global variable outside of the classes and then access it directly without using the global keyword. __global_object_in_module = SharedObject()

class Unit1: _gl_object = __global_object_in_module

class Unit2: _gl_object = __global_object_in_module In this corrected version, the global variable is defined outside the classes, and each class can access it directly as a class variable without the need for the global statement.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How are you
  • Low reputation (1):
Posted by: Ruslan Danyliuk

79450009

Date: 2025-02-19 01:47:36
Score: 0.5
Natty:
Report link

I have a potential source of the error and have been able to iron out almost all of the issues by retaining only 1 TabSection and leaving all others as a standalone Tab.

So for anyone with the same issue, it seems that multiple TabSections cause this problem.

Crashes are resolved completely and when within a standalone Tab the resizing of the Split View doesn't switch between views. This switching does however still occur with Tabs within the TabSection.

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

79450001

Date: 2025-02-19 01:42:35
Score: 2
Natty:
Report link
  1. Ensure that your token is correct and has read or write access.
  2. Some models, such as Llama 3.2, require access approval. You need to request access to be able to load and use them.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tao Le

79449967

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

The first case is a scenario where you await an async function to finish but don't need its return value. The async function will finish its execution despite data fetching and global state updates because there will be no return value to capture.

In case 2, it requires awaiting and results in storage in the catalog. The code seems to wait more visibly here but it's still waiting for the function in both scenarios.

The function execution can proceed straightaway after the await when the result in case 1 isn't necessary.

Hopefully, this is helpful.

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

79449954

Date: 2025-02-19 00:59:28
Score: 2
Natty:
Report link

I tried the above answer but it still didn't work.

The original file was create using textedit on my mac.

I opened dreamweaver and created a new json file and inserted my data.

I then tried my original code and it worked!!

Thanks to everyone who posted!!

I appreciate all your help.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Winrol

79449937

Date: 2025-02-19 00:43:25
Score: 1
Natty:
Report link
SELECT row_number() OVER (PARTITION BY Region) as Row_No, Name as Product, Category, Sales,
ROUND(SUM(Sales) OVER (PARTITION BY Region, Category), 2) as Category_Sales,
ROUND(SUM(Sales) OVER (PARTITION BY Region), 2) as Regional_Sales
FROM table
WHERE Region = "North"
ORDER BY Category, Sales;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user13415578

79449931

Date: 2025-02-19 00:38:24
Score: 1
Natty:
Report link

Updating madhead's answer with the new plugin id, this seems to work for me:

Add this to build.gradle:

plugins {
  id "com.gradleup.shadow" version "8.3.0"
}

and run ./gradlew shadowJar

According to the docs it looks like the plugin id changed from com.github.johnrengelman.shadow to com.gradleup.shadow

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

79449919

Date: 2025-02-19 00:31:21
Score: 6.5 🚩
Natty: 6
Report link

I came across this article as I am also looking to use automation for Analytics and Data Connectors. https://charbelnemnom.com/update-microsoft-sentinel-analytics-rules/#:~:text=In%20this%20step%2C%20you%20create,the%20Runbook%20into%20Azure%20Automation.

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (2): I am also looking
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: TheDonanator

79449917

Date: 2025-02-19 00:31:21
Score: 0.5
Natty:
Report link

I'm not sure this will fix things but have you just tried to send the GroupID by itself?

mailMessage.SetAsm(unsubscribeGrpId)

Also, I've noticed if you don't have a valid group ID (which you find in the SendGrid Web Dashboard -> Suppressions -> Unsubscribe Groups), it will not give you an error but the email will not be sent.

Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mike Smith

79449914

Date: 2025-02-19 00:30:21
Score: 0.5
Natty:
Report link

The problem you're facing is that the injectJavaScript method in your React Native WebView isn't executing the showMiddlemarker and hideMiddlemarker functions as expected. This is a common issue when working with WebView and JavaScript injection, and it usually boils down to timing, scope, or communication issues between React Native and the WebView.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Cafer Yükseloğlu

79449912

Date: 2025-02-19 00:27:20
Score: 1
Natty:
Report link

I had a similar issue.

INFO: Appending 'datas' from .spec Unable to find 'C:\Users\ ... \RootFolder\export.png' when adding binary and data files.

My code was:

QAction(QIcon(resource_path("AppImages\\Theme\\Dark\\export.png")), "Export Config", self)

resource_path is a function from: https://stackoverflow.com/a/72060275/26503307

Firstly, I tried

pyinstaller --onefile --noconsole --windowed --add-data "export.png:AppImages/Theme/Dark" ... my.py

Then changed to:

--add-data "AppImages/Theme/Dark/export.png:AppImages/Theme/Dark/"

it solved my problem. So I think you need to use the path as it declared in your code. I think it should be something like this (however, I am not sure about regex part (*.json)):

("\venv\Lib\site-packages\branca\*.json", "\venv\Lib\site-packages\branca"),
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Artem Dementiev

79449909

Date: 2025-02-19 00:23:19
Score: 2
Natty:
Report link

I finally found the option that controls this: Tools/Options/Text Editor/C/C++/Advanced/Text Editor/Auto Surround Mode. If I set it to "Never", it stops happening. I've decided to set it to "Quotes Only" rather than "Never" as that seems handy at times, assuming I remember it's there. VS should detect that my '<' is not the start of some kind of template parameter list.

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

79449907

Date: 2025-02-19 00:22:19
Score: 2
Natty:
Report link

As at February 2025, Azure / Entra ID has a preview feature to allow for expression matching against subject claims: https://docs.azure.cn/en-us/entra/workload-id/workload-identities-flexible-federated-identity-credentials?tabs=github

They're calling it Flexible Federated Identity Credentials (for now?)

For now only GitHub, GitLab, and Terraform Cloud issued tokens are supported.

Frustrating for myself, it does not work for GitHub enterprise issuer

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

79449897

Date: 2025-02-19 00:12:17
Score: 0.5
Natty:
Report link

Here is one way to easily show a star (yellow in this example) with a star-shaped outline (black in this example):

Box(contentAlignment = Alignment.Center) {
    Icon(
        imageVector = Icons.Default.StarOutline,
        contentDescription = null,
        tint = Color.Black,
        modifier = Modifier.size(24.dp)
     )
     if (isStarred) {
       Icon(
           imageVector = Icons.Default.Star,
            contentDescription = null,
             tint = Color.Yellow,
             modifier = Modifier.size(18.dp)
      )
}

Sample of stars

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

79449890

Date: 2025-02-19 00:06:16
Score: 0.5
Natty:
Report link

If you’re looking to do a mail merge on top of a PDF, you’ve got a few routes to explore.

One option is to use some of the popular PDF libraries available in languages like Python. The idea is to either overlay your data onto an existing PDF or fill in designated form fields if your PDF is set up that way. Essentially, you’d have your PDF template and then use a tool to “stamp” or insert your personalized content wherever you need it.

If you’re not up for writing a bunch of code or just need something quick, there are online tools that can handle this for you. For example, there are a few no-code solutions that let you upload your PDF and a spreadsheet, then automatically merge the data. One such tool is Row2PDF (Disclaimer: I'm the author of this software), which makes the whole process pretty straightforward.

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

79449889

Date: 2025-02-19 00:05:15
Score: 2
Natty:
Report link

Comment Formula is a newer extension which supports this. So far, it seems to work quite well:

While editing that line, you see:

enter image description here

While not editing that line, you see:

enter image description here

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

79449880

Date: 2025-02-18 23:56:13
Score: 3.5
Natty:
Report link

I forgot to save it, and tried to run it. I was getting used to google colab's auto-save that I forgot to save the file and then run.

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

79449879

Date: 2025-02-18 23:54:12
Score: 6 🚩
Natty: 5.5
Report link

Any idea about this question, please?

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

79449878

Date: 2025-02-18 23:53:12
Score: 1.5
Natty:
Report link

your Piceatannol OC1=CC=C(C=C1)C=C(C2=CC(O)=CC(O)=C2)O :

enter image description here

Wikipedia one C1=CC(=C(C=C1C=CC2=CC(=CC(=C2)O)O)O)O :

enter image description here

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

79449868

Date: 2025-02-18 23:44:08
Score: 3
Natty:
Report link

From the Service Bus Explorer, you can export the definition(right click namespace or topics) to an xml file and examine the ForwardTo element to find where a message is forwarded from.

enter image description here

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

79449866

Date: 2025-02-18 23:42:08
Score: 3.5
Natty:
Report link

I am new to BuidConfig. Is it running on ephemeral storage? It could be exhausting the root volume of the Kube node. I found this, possibly related. I also found here some options to use volumes, maybe it helps?

Reasons:
  • RegEx Blacklisted phrase (1.5): I am new
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: bennythejudge

79449865

Date: 2025-02-18 23:42:08
Score: 2
Natty:
Report link

If python, node or other provided solutions aren't exactly what you looking for I've put together a short dotnet web server that seems to work with https and serves compressed unity files by default: https://github.com/ezpipeline/test-webgl

Leave a github issue post if it doesn't work as intended.

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

79449859

Date: 2025-02-18 23:37:07
Score: 1
Natty:
Report link

Using -rP option works for me. I think it's the best approach.

Reasons:
  • Whitelisted phrase (-1): works for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: pegasus

79449839

Date: 2025-02-18 23:23:05
Score: 1
Natty:
Report link

Following Code is running: I have access to the element I want to modify. The properties 'Label' and 'CommandURL' are set and are visible and available in the toolbar-dialog. 'Visible' and 'Enabled' are also set (in the toolbar-object), but they have no effect in the dialog. See the last 2 lines.

Sub DisableCommandInToolbar                                     REM here 'myCommand' in the toolbr 'myToolbar'

Dim uiSettings As Object
Dim moduleCfgMgr As Object
Dim i As Integer
Dim id As Integer
    
REM Access to the user interface settings
uiSettings = CreateUnoService("com.sun.star.ui.ModuleUIConfigurationManagerSupplier")
moduleCfgMgr = uiSettings.getUIConfigurationManager("com.sun.star.text.TextDocument")

REM Retrieve the list of all toolbars
oUIToolbarInfos = moduleCfgMgr.getUIElementsInfo(3)             REM Load element information [3: toolbars. (1 = menu bars, 2 = context menus, 4 = status bars, 5 = floating windows)]

REM Find the index of the desired toolbar
REM there's no method like 'GetByName' so you have to find the index in a loop
For i = LBound(oUIToolbarInfos) to UBound(oUIToolbarInfos)      REM Iterate through all element info (id will later hold the element ID)
    OneToolbarInfo = oUIToolbarInfos(i)                         REM Current element info (also an array)
    sToolbarURL = OneToolbarInfo(0).Value                       REM thomething like: 'private:resource/toolbar/custom_toolbar_fa3a5975'
    sName = OneToolbarInfo(1).Value
    if sName = "myToolbar" then 
        id = i                                                  REM Index of the 'myToolbar' toolbar
        REM MsgBox "toolbar = " & "  " & sToolbarURL  & Chr(10) & "Item Index = " &  "  "  & id
        Exit For                                                REM Stop searching once found
    End if
Next i
    
Dim oLayoutMgr, TBar, oContext As Object
Dim ChildCount As Integer
Dim ChildName As String
Dim j As Integer   
Dim CmdIdx As Integer
Dim sToolbarURLSettings as object

CmdIdx = -1

REM Find the index of the desired command
REM there's no method like 'GetByName' so you have to find the index in a loop
oLayoutMgr = ThisComponent.CurrentController.Frame.LayoutManager    REM Get LayoutManager of the current document
TBar = oLayoutMgr.getElement(sToolbarURL)                           REM Retrieve the toolbar with the given URL (stored in sToolbarURL above)
If isNull(TBar) Then Exit Sub                                       REM If the toolbar does not exist, exit the subroutine
oContext = TBar.getRealInterface().getAccessibleContext()           REM Get the accessibility interface of the toolbar to access its elements
ChildCount = oContext.getAccessibleChildCount()                     REM Get the number of child elements (buttons, separators, etc.) in the toolbar
For j = 0 To ChildCount - 1                                         REM Loop through all elements in the toolbar
    ChildName = oContext.getAccessibleChild(j).getAccessibleName()  REM Get the name of the current toolbar element
    If ChildName = "myCommand" Then                                 REM if the element name matches the target command ...
    CmdIdx = j                                                      REM ... Store the index of the found command ...
    Exit For                                                        REM ... and exit the loop
    End If
Next j

sToolbarURLSettings = moduleCfgMgr.getSettings(sToolbarURL, True)   REM Retrieve the settings of the specified toolbar, allowing modifications (True = writable)
If CmdIdx <> -1 Then                                                REM if Command exists
    Dim newEntry(4) As New com.sun.star.beans.PropertyValue         REM Create a new entry to set parameters
   
    newEntry(0).Name = "CommandURL"
    newEntry(0).Value = "vnd.sun.star.script:myLibrary.myModule.myCommand?language=Basic&location=application"  REM The command itself

    REM Set the label
    newEntry(1).Name = "Label"
    newEntry(1).Value = "myCommand"                                 REM The visible name in the toolbar (eq. ChildName)
    
    REM Other supported types include SEPARATOR_LINE, SEPARATOR_SPACE, and SEPARATOR_LINEBREAK.
    newEntry(2).Name = "Type"
    newEntry(2).Value = com.sun.star.ui.ItemType.DEFAULT

    REM Optional additional properties like 'Enabled', 'Visible'
    newEntry(3).Name = "Enabled"                                    REM ist set in the toolbar but has no effect
    newEntry(3).Value = False                                       REM True has no effect also. Same as string: "False", "True"
    
    REM Make the command invisible
    newEntry(4).Name = "Visible"                                    REM ist set in the toolbar but has no effect
    newEntry(4).Value = False                                       REM True has no effect also. Same as string: "False", "True"
    
    REM next 2 line are working also, "CommandURL" and "Label" are shown in the Toolbar. But "Enabled" and "Visible" has no effect.
    sToolbarURLSettings.replaceByIndex(CmdIdx, newEntry)            REM Replace ...
    moduleCfgMgr.replaceSettings(sToolbarURL, sToolbarURLSettings)  REM .... the element ...
    
End If
End Sub
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: need2know

79449804

Date: 2025-02-18 22:56:00
Score: 5
Natty: 4
Report link

GAY GAY GAY GAY GAY GAY GAY GAYG AYG AYGA YAG A

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

79449802

Date: 2025-02-18 22:56:00
Score: 0.5
Natty:
Report link

You could also create a "wrapper" method (getFirstElement) on the SourceObject:

public class SourceObject {
public ArrayList<ListObject> list = new ArrayList<ListObject>();

public SourceObject() {
    list.add(new ListObject());
}

public getFirstElement(){
    return list.get(0);
}

So in your initial mapping you can say:

@Mappings({
    @Mapping(target="details.forename", source="firstElement.details.forename"),
    @Mapping(target="details.surname", source="firstElement.details.surname"),
})
DestinationObject toDestination(SourceObject source);
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Hugo Martinez

79449801

Date: 2025-02-18 22:55:00
Score: 1
Natty:
Report link

If you are getting this error on IntelliJ please try this. I just ran into the same issue and found the problem was my annotation processor config.

wrong config

I don't know why that path was there or who added it but neither adding the proper path to the library helped.

Selecting "obtain processors from project classpath" fixed it.

fix

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Isidro.rn

79449796

Date: 2025-02-18 22:52:59
Score: 1
Natty:
Report link

Right now, imo, the best way (for scoped enum) is with a macro:

#define ENUM_VALUE(x) static_caststd::underlying_type_t<decltype(x)>(x)

That's guaranteed to work everywhere and at compile time, unlike the constexpr patterns.

If it was just about typing less, I wouldn't bother at all... but it's also less error prone than typing out the static_cast because it extracts the base type of the enum class.

But, as someone else mentioned, a very viable alternative is to use unscoped enums within their own namespace.

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

79449794

Date: 2025-02-18 22:52:59
Score: 2.5
Natty:
Report link

me pasó, el problema es que el esquema debe existir en la base de datos con nombre definido en la pripieddad spring.datasource.url: spring.datasource.url=jdbc:postgresql://host:5432/<DB_NAME>

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jhon Calderón

79449793

Date: 2025-02-18 22:51:59
Score: 1
Natty:
Report link

If you are getting this error on IntelliJ please try this. I just ran into the same issue and found the problem was my annotation processor config.

wrong config

I don't know why that path was there or who added it but neither adding the proper path to the library helped.

Selecting "obtain processors from project classpath" fixed it.

fix

Reasons:
  • Whitelisted phrase (-1): try this
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Isidro.rn

79449773

Date: 2025-02-18 22:40:57
Score: 3.5
Natty:
Report link

The same query worked fine the next day. It might have been a problem with cached data.

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

79449763

Date: 2025-02-18 22:36:56
Score: 2
Natty:
Report link

I have tried using JLayeredPane to hold the splitpane/ tabbedpane/ Awt panel... but nothing worked.

Any suggestions or workaround is highly appreciated. Any suggestions on alternate way to get handle for JNI in this hierarchy is also highly appreciated.

It's mot a question of z-order or layer. AWT components have heavyweight peers that come from the operating system that Java is running on'S GUI toolkit. On the other hand, Swing is lightweight - defined in Java and not the OS. OS components always take precedence in screen display and with UI events.

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1): but nothing work
  • RegEx Blacklisted phrase (2): Any suggestions
  • Long answer (-0.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: ControlAltDel

79449758

Date: 2025-02-18 22:32:55
Score: 1
Natty:
Report link

The equivalent function in Crystal is Cstr() or ToText(). The online help provides excellent details.

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

79449756

Date: 2025-02-18 22:32:55
Score: 1.5
Natty:
Report link

open "./phpmyadmin/js/messages.php" and add:

declare(strict_types=1); //line 3... error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED); // <--add this

do the same with "/phpmyadmin/config.inc.php"

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Neyton Luiz Dalle Molle

79449753

Date: 2025-02-18 22:29:54
Score: 0.5
Natty:
Report link

Using .getUI() to create Menu

I'll post my Comment as an Answer.

@LimeHusky Tried getUI(); thanks for the comment!

Class UI helps users create a custom menu bar on the editors user interface enabling them to add personalized functions.

Sample Code:

function myFunction() {
  const sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
  const ui = SpreadsheetApp.getUi();
  ui.createMenu('foo')
    .addItem('bar', 'foobar')
    .addToUi();
}

This might help to return to the cell A10 to A21 using for of loop.

function returnToLocation() {
  const sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
  const location = sheet.getCurrentCell().getA1Notation().replace(/\D/g, '');

  const ranges = [
    {currentLocation:600,targetLocation:"A10"},
    {currentLocation:550,targetLocation:"A11"},
    {currentLocation:500,targetLocation:"A12"},
    {currentLocation:450,targetLocation:"A13"},
    {currentLocation:400,targetLocation:"A14"},
    {currentLocation:350,targetLocation:"A15"},
    {currentLocation:300,targetLocation:"A16"},
    {currentLocation:250,targetLocation:"A17"},
    {currentLocation:200,targetLocation:"A18"},
    {currentLocation:150,targetLocation:"A19"},
    {currentLocation:100,targetLocation:"A20"},
    {currentLocation:50,targetLocation:"A21"}
  ];

  for (const {currentLocation, targetLocation} of ranges) {
    if (location >= currentLocation) {
      sheet.getRange(targetLocation).activate();
      break; // Breaking the loop if matches
    }
  }

}

References:

Class UI

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @LimeHusky
  • Low reputation (0.5):
Posted by: Lime Husky

79449751

Date: 2025-02-18 22:28:54
Score: 4
Natty: 4.5
Report link

In integration URI you must use the qualifier_invoke_arn value. https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/lambda_function#qualified_invoke_arn-1

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

79449747

Date: 2025-02-18 22:25:53
Score: 0.5
Natty:
Report link

If you want to translate

$_POST can be written in python as

import cgi

form = cgi.FieldStorage()

My candid advice, just stick with php don't do it. But if you must! Make sure you have a fresh backup, because you can be left with a broken web platform.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Onyedikachi Oko - Dexter

79449746

Date: 2025-02-18 22:25:53
Score: 1
Natty:
Report link

I bet your mistake is simply that createStackNavigator() shall be apart from any component ;

...
import ScreenOne from "./src/screens/ScreenOne";
import ScreenTwo from "./src/screens/ScreenTwo";


const Stack = createStackNavigator();

export default function App() {
  return (
    <SafeAreaProvider>
...

You might want to take look at the documentation.

Otherwise, you may check out this similar question

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

79449729

Date: 2025-02-18 22:14:52
Score: 0.5
Natty:
Report link

Assuming you really just want to do what you ask...I don't see the need to tie this into the same programmatic interface, since you're effectively hacking through to a solution anyway. Decouple it from your infrastructure and just use another process script to do the excel open/close. Here is another link to an answer for how to do this, that should guide you: Open, save and close an Excel file from the command prompt without interaction

you could of course call it from this process, or set a scheduler/timer to activate it, and so on. Given the lack of other details, this should answer your question asked.

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

79449725

Date: 2025-02-18 22:12:50
Score: 4.5
Natty: 5
Report link

A description or link is enough https://rapef.info/code_201/

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

79449722

Date: 2025-02-18 22:09:50
Score: 1
Natty:
Report link

Read the Microsoft documentation.

Good News:

Bad News:

Source: Microsoft Documentation

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

79449721

Date: 2025-02-18 22:08:49
Score: 2
Natty:
Report link

See https://forum.posit.co/t/error-building-rcpp-1-0-13-when-deploying-shiny-app/196970 There was a problem in v1.0.13 of Rcpp, but it has been fixed and that newer version is now on CRAN, so if you install.packages("Rcpp") and retry it should go smoothly.

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

79449715

Date: 2025-02-18 22:06:49
Score: 3
Natty:
Report link

There is no class named QuantumKernel, hence the error.

See the API ref https://qiskit-community.github.io/qiskit-machine-learning/apidocs/qiskit_machine_learning.kernels.html#module-qiskit_machine_learning.kernels for the classes that are there.

Also see the tutorials such as this one for quantum kernels https://qiskit-community.github.io/qiskit-machine-learning/tutorials/03_quantum_kernel.html

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

79449709

Date: 2025-02-18 22:02:48
Score: 4.5
Natty:
Report link

Replacing http://java.sun.com with https://jakarta.ee in wsdl_bindings.xml worked as shown in the screenshot below:

enter image description here

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

79449706

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

Share the script project with the service account email’s + include the scope auth/drive when requesting the service account token

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

79449703

Date: 2025-02-18 22:00:46
Score: 9.5 🚩
Natty: 4
Report link

Did you ever figure out a resolution to this? Having the same problem. Tokens randomly showing as "Unregistered" even on my test devices. But doesn't always happen.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever figure out a
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Having the same problem
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (1):
Posted by: datasci1987

79449701

Date: 2025-02-18 22:00:46
Score: 2.5
Natty:
Report link

I would recommend this one

No pre-setup or indexes required, the usage is like a json (I am the author)

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

79449700

Date: 2025-02-18 22:00:46
Score: 2.5
Natty:
Report link

Option is called CompressionEnabled. Set it to false

see https://learn.microsoft.com/en-us/aspnet/core/migration/70-80?view=aspnetcore-9.0&tabs=visual-studio

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

79449695

Date: 2025-02-18 21:58:45
Score: 0.5
Natty:
Report link

The solution is simple, but dangerous. The Oracle VM should ONLY be used for development and testing purposes, NEVER for a serious production system.

Now, that said, here's the solution:

Step one - turn off the firewall

In the Oracle VM, issue the following commands:

sudo systemctl stop firewalld

sudo systemctl disable firewalld

Step two - allow connections from anywhere

Edit the file: /opt/oracle/product/23ai/dbhomeFree/network/admin/listener.ora

Change localhost to 0.0.0.0

Use sudo and vim to do this.

Step three - restart the VM

That's it. It very dangerous for anything important, but this is just for dev and testing, right? Right?!

Reasons:
  • Whitelisted phrase (-1): solution is
  • Whitelisted phrase (-2): solution:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Bob Roth

79449691

Date: 2025-02-18 21:56:45
Score: 0.5
Natty:
Report link

In the end, what worked was those 3 lines of code:

expr = V_r_integral_minus_V_theta_integral.subs(sp.sin(theta)**2, (1-sp.cos(2*theta))/2)
expr = sp.simplify(expr)
separated_expr = sp.collect(expr, [sp.cos(2*theta), sp.log(r), r**2])

So yeah, manually collect all terms, and manually use a trigonometric identity. I don't know if there's a more straightforward way to do it.

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

79449680

Date: 2025-02-18 21:46:43
Score: 2.5
Natty:
Report link

I had this issue - I managed to get into the admin area and just save and resave the permalinks. This fixed this issue. Hope it helps some else.

Reasons:
  • Whitelisted phrase (-1): Hope it helps
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: James H

79449657

Date: 2025-02-18 21:32:40
Score: 5
Natty: 5
Report link

Thank you for updating your post with the answer. Much appreciated :)

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): appreciated
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Muscleflex

79449650

Date: 2025-02-18 21:29:39
Score: 0.5
Natty:
Report link

After a day of fiddling what fixed it for me was:

ports:
      - "5434:5432" # So 5434 for local host, but still 5432 in the container

and then access by:

psql -h localhost -p 5434 -U root -d users
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Richard

79449644

Date: 2025-02-18 21:25:39
Score: 3
Natty:
Report link

When you run a CMD file from PowerShell, it's run by CMD.exe not by PowerShell. The error message is coming from Python.

This is not a PowerShell problem.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (1):
Posted by: Sean Wheeler

79449643

Date: 2025-02-18 21:25:39
Score: 1
Natty:
Report link

Look into Integer.compare(a, b). It is something like this:

int sign = (a < b ? 1 : (a > b ? -1 : 0));

and choose a = 0 and b = col.

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

79449633

Date: 2025-02-18 21:19:37
Score: 1.5
Natty:
Report link

To clone a repo to a remote machine that has no access to the source machine, my recipe is:

See more details in a slightly longer text I just added to the FOSSIL forum: https://fossil-scm.org/forum/forumpost/4e51f8f957

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rainer Glaschick

79449632

Date: 2025-02-18 21:19:37
Score: 0.5
Natty:
Report link

It's kind of confusing, but the problem (as of writing this) is that the AddIdentity extension method used to register the identity services isn't included in the Microsoft.Extensions.DependencyInjection package (even though the API docs show it is oddly enough). It is part of the Microsoft.AspNetCore.Identity package. Add that package to your project and once you import it via a using statement then the method will be available to use to register the desired services.

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

79449619

Date: 2025-02-18 21:11:35
Score: 2
Natty:
Report link

The one of the problem may be with the Entity classes if you are dealing with MongoDB. Please check if you have @Indexed(unique=true) on your Id. If you did this please remove it and problem would be solved. This is because the _id is already unique for each document in the db. Thankyou.

Reasons:
  • Blacklisted phrase (1): Thankyou
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Anurag sharma Pendyala