79179832

Date: 2024-11-12 04:59:06
Score: 0.5
Natty:
Report link

I once fell in the same trap.

When a multires expression is used in a list of expressions without being the last element, or in a place where the syntax expects a single expression, Lua adjusts the result list of that expression to one element.

Lua 5.4 manual. 3.4.12 – Lists of expressions, multiple results, and adjustment.

So, table.unpack(…) or ... should be last in a list of expressions.

Perhaps, if you literally want to insert some values into a table, you could use table.insert()?

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

79179816

Date: 2024-11-12 04:49:04
Score: 0.5
Natty:
Report link

eu instalei o ngx-bootstrap, para usar o modal fiz as importações

import { ModalModule} from 'ngx-bootstrap/modal';

em imports ModalModule.forRoot()

exports:[ToastrModule, NgxSpinnerModule, ModalModule],

ai ta dando esse problema.

ng s Application bundle generation failed. [3.421 seconds]

X [ERROR] Angular compilation initialization failed. [plugin angular-compiler]

Error: Cannot resolve type entity i1.FocusTrapModule to symbol at reflectTypeEntityToDeclaration (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-PGXXZYOH.js:745:11) at extraReferenceFromTypeQuery (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:1538:26) at file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:1533:12 at Array.map () at extractReferencesFromType (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:1529:23) at DtsMetadataReader.getNgModuleMetadata (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:1739:16) at MetadataDtsModuleScopeResolver.resolve (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:3979:37) at LocalModuleScopeRegistry.getExportedScope (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:4310:41) at LocalModuleScopeRegistry.getScopeOfModuleReference (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:4165:32) at LocalModuleScopeRegistry.getExportedScope (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:4316:19)

Watch mode enabled. Watching for file changes...

marqu@DESKTOP-IR30AEQ MINGW64 ~/OneDrive/Desktop/Front-end Emprestimos de livros/emprestimo-livro-frontend (master) $ ng s Application bundle generation failed. [3.577 seconds]

X [ERROR] Angular compilation initialization failed. [plugin angular-compiler]

Error: Cannot resolve type entity i1.FocusTrapModule to symbol at reflectTypeEntityToDeclaration (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-PGXXZYOH.js:745:11) at extraReferenceFromTypeQuery (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:1538:26) at file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:1533:12 at Array.map () at extractReferencesFromType (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:1529:23) at DtsMetadataReader.getNgModuleMetadata (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:1739:16) at MetadataDtsModuleScopeResolver.resolve (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:3979:37) at LocalModuleScopeRegistry.getExportedScope (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:4310:41) at LocalModuleScopeRegistry.getScopeOfModuleReference (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:4165:32) at LocalModuleScopeRegistry.getExportedScope (file:///C:/Users/marqu/OneDrive/Desktop/Front-end%20Emprestimos%20de%20livros/emprestimo-livro-frontend/node_modules/@angular/compiler-cli/bundles/chunk-APDLWLLW.js:4316:19)

Watch mode enabled. Watching for file changes...

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

79179812

Date: 2024-11-12 04:46:03
Score: 0.5
Natty:
Report link

As of iOS 17+, .labelsHidden() was all I needed to get the DatePicker alignment in the center.

DatePicker("", selection: $notificationTimeOnPicker, displayedComponents: .hourAndMinute)
.datePickerStyle(GraphicalDatePickerStyle())
.foregroundStyle(Color("ChartColor"))
.labelsHidden() // this solved my alignment issues caused by the default empty 'EmptyView' label that was hungrily taking up horizontal space.

I hope that solves it for anyone else looking for an answer in 2024!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nathaniel

79179805

Date: 2024-11-12 04:42:03
Score: 1.5
Natty:
Report link

You may need to add the path to the .npm/bin directory instead of .npm itself.

ENV PATH="/home/node/.npm-global/bin:${PATH}"
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Satoshi Yazawa

79179801

Date: 2024-11-12 04:40:02
Score: 3.5
Natty:
Report link

Route::put('/your-model/{id}', [YourController::class, 'update'])->name('your-model.update');

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: BO PISEY

79179796

Date: 2024-11-12 04:37:02
Score: 2
Natty:
Report link

This is mainly due to newer version of numpy , try uninstalling numpy using pip uninstall numpy and then download older version of numpy using pip install numpy==1.25.1 This would work

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

79179792

Date: 2024-11-12 04:33:01
Score: 3.5
Natty:
Report link

if you are using a mac, just go to your keychain and search for keystore

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

79179786

Date: 2024-11-12 04:27:00
Score: 1
Natty:
Report link

simply use String prettyString = prettifyJson(uglyString);

import static io.restassured.internal.path.json.JsonPrettifier.prettifyJson;

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

79179780

Date: 2024-11-12 04:24:59
Score: 3
Natty:
Report link

In the latest version of IntelliJ 2024.2 click highlighted section below to expand

click here

Select appearance sub menu item.

Uncheck "Compact middle packages"

uncheck this

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

79179779

Date: 2024-11-12 04:24:57
Score: 8 🚩
Natty:
Report link

did you get the solution to this error.

Reasons:
  • RegEx Blacklisted phrase (3): did you get the solution to this
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: soumya

79179776

Date: 2024-11-12 04:21:55
Score: 6 🚩
Natty: 6.5
Report link

I think you can follow this guideline https://developer.android.com/build/migrate-to-ksp#kts

Reasons:
  • Blacklisted phrase (1): this guide
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ahmad Dudayef

79179772

Date: 2024-11-12 04:20:54
Score: 2.5
Natty:
Report link

I have this issue before, but mine was cloning the repo then it started to freeze.

What I'd do is to delete the file, then clone it again then build then start.

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

79179769

Date: 2024-11-12 04:15:53
Score: 0.5
Natty:
Report link

NOTE: i am not expert in kotlin

on swift side we are doing it this way.

if fileURL.startAccessingSecurityScopedResource() {
   if let data = try? Data(contentsOf: fileURL) {
      //USE DATA HERE
   }
   fileURL.stopAccessingSecurityScopedResource()
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Om Sanatan

79179768

Date: 2024-11-12 04:15:53
Score: 3.5
Natty:
Report link

I was able to resolve this issue by ensuring that the "Internal Permission" field was not included in the export.

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

79179760

Date: 2024-11-12 04:10:52
Score: 2.5
Natty:
Report link

This seems like a common issue, and I've run into it too. A lot of people on GitHub are dealing with the same thing.

ref https://github.com/cg-dot/vertexai-cf-workers/issues/18

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

79179749

Date: 2024-11-12 04:04:51
Score: 2
Natty:
Report link

Correction, it is possible for any user to access the content of a cross-origin iframe in the devtools. In the console tab of chrome, it is possible to choose the context of the JavaScript execution. By choosing the IFrame as context, the user can act directly inside the window presented by the iframe and access all its content.

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

79179743

Date: 2024-11-12 04:02:51
Score: 0.5
Natty:
Report link

For me the fix was to remove the apt version of uwsgi-plugin-python3 and the plugin ini/cli option and run pip install uWSGI and then run uwsgi with /path/to/my/venv/bin/uwsgi --ini /path/to/my/file.ini

that is assuming you did your pip install in a venv of course.

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

79179742

Date: 2024-11-12 04:02:51
Score: 2.5
Natty:
Report link

One option is to use =substitute(,CHAR(9)," ") Put in as many spaces as you like. Then you can keep the original with TABs or copy - paste values and keep the result.

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

79179741

Date: 2024-11-12 04:02:48
Score: 10 🚩
Natty: 5
Report link

have you ever found the solution?

Reasons:
  • RegEx Blacklisted phrase (2.5): have you ever found the solution
  • RegEx Blacklisted phrase (2): have you ever found
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Hyacinthe

79179736

Date: 2024-11-12 04:00:48
Score: 1
Natty:
Report link

do: pip install cython

then try whatever u want. it worked for me

Reasons:
  • Whitelisted phrase (-1): it worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Nizamuddin Ahmed

79179733

Date: 2024-11-12 03:57:47
Score: 1.5
Natty:
Report link

The error occurs because the Tag model does not have an association defined for tagged.

To resolve this, you can either add a belongs_to :tagged association in the Tag model or explicitly reference the column name as the answer of @pungoyal:

tags = Tag.where(game_id: 1, tagged_id: u.id).includes(:tagged)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @pungoyal
  • Low reputation (0.5):
Posted by: Trang Tung Nguyen

79179729

Date: 2024-11-12 03:53:46
Score: 2
Natty:
Report link

in my job (domain users) i run a bat simlpy as just psexec -s -h \ip -u "localhost\administrador" -p "password" \ip\file.bat

here in my house with a Pro and an educational version, this one is vmware, i cannot run a bat if i didnt use -c, if i try to run without -c i got psexec could not star "\file.bat" on "remote ip", the bat is perfectly access from the remote machine with no problems. cannot understand that

Reasons:
  • Blacklisted phrase (0.5): i cannot
  • No code block (0.5):
  • Low reputation (1):
Posted by: Usagi

79179728

Date: 2024-11-12 03:52:46
Score: 2.5
Natty:
Report link

You can try with a lower version of Xcode, sometimes it happens in very recent versions that it generates some strange errors. You can download it and try if that solves the problem :)

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

79179724

Date: 2024-11-12 03:50:46
Score: 2.5
Natty:
Report link

You can wrap your main content in a SingleChildScrollView to avoid to bottom overflow issue when the keyboard appears.

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

79179708

Date: 2024-11-12 03:36:44
Score: 1
Natty:
Report link

Based on @Pokemoon comment, my solution might be more applicable

df <- df |> 
mutate(ID = case_when(V3=="INFO" ~ V4, .default = NA)) |> 
  tidyr::fill(ID) |>
  filter(V1 != "REF") |>
  rename(
    REF = V1,
    ALT = V2,
    INFO = V3,
    VAR = V4
  )

Edited to properly have default column names of V#.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Pokemoon
Posted by: gabagool

79179702

Date: 2024-11-12 03:30:43
Score: 1.5
Natty:
Report link

To implement Yahoo OAuth correctly, make sure you're using the OAuth2 Authorization Code Flow rather than the "Sign in with Yahoo" guide, which follows a different flow.

When creating your app, ensure you select Confidential Client as the client type. This option is necessary to support secure and server-side token handling, which is ideal for scenarios where you need to keep the client secret secure on the server.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ali Helmut Baltschun

79179698

Date: 2024-11-12 03:28:43
Score: 0.5
Natty:
Report link

Another approach would be using when with val

Example:

when(val a = b.value) {
    null -> {}
    else -> {} //Value of a can be accessed inside else block as not-null
}

A drawback with this approach is even if you don't want to run anything when value is null, you must specify null case with empty block.

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

79179693

Date: 2024-11-12 03:25:42
Score: 0.5
Natty:
Report link

First, import your data so that the first row is not headers:

tmp <- tempfile(fileext = ".csv")
write.csv(df, tmp, row.names = FALSE)

# If you already have your data as a CSV or similar, just add header = FALSE
# like this and ignore the above code (that's just for reproducibility)
df1 <- read.csv(tmp, header = FALSE)

Then, use tidyr::fill to copy down the IDs:

library(dplyr)
library(tidyr)

df2 <- df1 %>%
  # this will replace everything that's not an ID with NA
  mutate(ID = as.numeric(V4)) %>%
  # this is the function that copies down the IDs
  fill(ID) %>%
  # remove rows with headers
  filter(V1 != "REF") %>%
  # add column names
  rename(
    REF = V1,
    ALT = V2,
    INFO = V3,
    VAR = V4
  )

enter image description here

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

79179689

Date: 2024-11-12 03:23:41
Score: 3
Natty:
Report link

Pvsz fiusen

  1. Pakah tumbuhannya bisa digabungin?

A. Bisa

B. Tidak bisa

C. Tidak tahu

D tidak mungkin

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

79179686

Date: 2024-11-12 03:22:41
Score: 3.5
Natty:
Report link

This is fixed. The reason for this problem is IQKeyboardManager. All I had to was disable IQKeyboardManager for this view.

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

79179682

Date: 2024-11-12 03:21:40
Score: 2.5
Natty:
Report link

Encountered the same problem ,forgot I had missed a colon while copying code here and there. Make sure you compile with any error and you would find the .exe file in the debug folder.

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

79179664

Date: 2024-11-12 03:10:38
Score: 1.5
Natty:
Report link

To get the behavior you want, you should add a force of gravity towards the center of the asteroid when the player gets within a certain distance and have a high jump speed so that the player is able to get far enough from the asteroid. This will cause the player to be still attracted to the asteroid even if they lose contact unless they get far enough away. The force's magnitude and maximum distance can be tuned so that the player only leaves the asteroid if the player jumps.

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

79179655

Date: 2024-11-12 03:04:37
Score: 3.5
Natty:
Report link

3 years latter and this thing is still buggy as heck

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Phan Thành Nhân

79179654

Date: 2024-11-12 03:03:37
Score: 0.5
Natty:
Report link

1.What NO_MODULE does:

2.Drawbacks of using NO_MODULE:

If you're not experiencing any issues after adding NO_MODULE, it's likely that your Boost installation is compatible with the FindBoost.cmake file from the CMake package repository. It's generally recommended to use NO_MODULE and the modern FindBoost.cmake approach because it's the direction in which CMake is heading, and it will ensure better compatibility with future versions of CMake.

However, if you do encounter issues, you might need to either update your Boost installation to a version that's compatible with the new FindBoost module or remove the NO_MODULE option and ensure that a BoostConfig.cmake file is available for CMake to use.

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

79179650

Date: 2024-11-12 03:02:36
Score: 1
Natty:
Report link

I was looking for a solution for many days. I searched around the web and tried everything, but nothing worked for me. With a slight difference from @pedro-ferreira answer, here is my solution.

  1. Access Git Bash with administrator permission. It can be any terminal you are using for development. Make sure Git is installed and you are using it with administrator permission. I am using Laragon (Local Development Environment)

  2. Navigate to the installation folder of Drupal and type the following command to install drush: composer require drush/drush:12.*

Please Note! Most of the guides/solultions out there will tell you to install drush globally, but it is not required and it does not work. Latest version of drush as the time of writing is 13, but you should use version 12.

  1. Add the following path to your system environment variables under the PATH variable: path_of_project/vendor/bin/drush.

For example, here is my path. "ugintl" is the drupal project name. C:\laragon\www\ugintl\vendor\bin\drush

  1. Now stop and start your server again and open the terminal/command line. Depending on your Dev Environment, you can access drush using commands ./vendor/bin/drush or php vendor/bin/drush. For me, the later worked.
Reasons:
  • Blacklisted phrase (1): but nothing work
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @pedro-ferreira
  • Low reputation (0.5):
Posted by: Umair

79179642

Date: 2024-11-12 02:55:35
Score: 2.5
Natty:
Report link

echo -e "\x27\x2d\x65\x27"

might need to assign it on ms filesystem using io lib on disk

echo -e "\x1A\x0B\x27\x92\x30\x27\x94\x64\x24\x1B"

press home to put caret position before enter or put it in a cmd batch bat sh bash or whatever

try "\u20BF" ;)

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

79179639

Date: 2024-11-12 02:52:35
Score: 2
Natty:
Report link

If anyone is still having this problem, removing old session info in Rstudio cd ~/.local/share/rstudio/ helps and once you get Rstudio open prevent it from happening by changing settings in Tools -> Global options -> Restore .RData into workspace at startup

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

79179636

Date: 2024-11-12 02:49:34
Score: 2
Natty:
Report link

.gitignore is used to prevents specified files from being tracked and included in version control. That means this is used by git to ignore which files and directories.

.Rbuildignore: is used by the R CMD build process to exclude files from the package tarball that is created when building the package.

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

79179635

Date: 2024-11-12 02:48:34
Score: 2.5
Natty:
Report link
def upstreamEnvVars = urrentBuild.upstreamBuilds[0].buildVariables

Please refer to: https://kb.novaordis.com/index.php/Jenkins_currentBuild#buildVariables

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

79179632

Date: 2024-11-12 02:44:33
Score: 3
Natty:
Report link

setting "experimentalDecorators" to true did it for me in tsconfig.json file. "experimentalDecorators": true

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

79179629

Date: 2024-11-12 02:44:31
Score: 7.5 🚩
Natty: 5.5
Report link

ALGUIEN ME PUEDE AYUDAR CON ESTO Y COMO LA SOLUCIONO?

conectarDb(); date_default_timezone_set('America/Lima'); @mysql_query("ESTABLECER NOMBRES 'utf8'"); ?>

Reasons:
  • Blacklisted phrase (2): AYUDA
  • Blacklisted phrase (2.5): SOLUCION
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: JORGE AUGUSTO NAVARRO

79179622

Date: 2024-11-12 02:36:29
Score: 2
Natty:
Report link
sex !== 'f' && $request->sex !== 'm' ? 'selected' : '' }}>- - - - sex === 'f' ? 'selected' : '' }}>Female sex === 'm' ? 'selected' : '' }}>Male

try this

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Umesh Kumar Sahu

79179620

Date: 2024-11-12 02:35:29
Score: 5.5
Natty: 4.5
Report link

Not sure if this helps in your situation, but I get this error if the WKWebView isn't bound to the app view tree. (If this is your issue too, and you find a fix that isn't binding to the view tree, please let me know)

Reasons:
  • RegEx Blacklisted phrase (2.5): please let me know
  • RegEx Blacklisted phrase (1): I get this error
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Chaos Crafter

79179611

Date: 2024-11-12 02:27:27
Score: 2
Natty:
Report link

Include login.js from this package to your frontend template, Get SSO button css id & class from microsoft_auth template and add same to your custom button in frontend template, that's it.

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

79179610

Date: 2024-11-12 02:26:27
Score: 1
Natty:
Report link

I highly recommend watching a Godot Engine video from the Brackeys YouTube channel. Brackeys has a unique way of explaining concepts that makes it easier to understand game development. To get to the specific content you’re looking for, you can skip ahead to the part titled "Dying 1.0." In this segment, he walks you through the script he has written for that particular project.

I found his explanations to be helpful, and the script he demonstrated worked perfectly when I tried it out in my own project. It’s an excellent resource for anyone looking to improve their skills in game development using Godot. Plus, the community around Brackeys is very supportive, so if you have any questions, you can likely find answers or ask for help in the comments section or on their Discord. Happy coding!

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

79179605

Date: 2024-11-12 02:21:26
Score: 3.5
Natty:
Report link

It turns out the issue was due to the @Data annotation, which was causing an infinite loop in the background, likely due to the toString, hashCode, and equals methods —or possibly just the toString method alone; I'm not entirely sure.

To resolve the issue, I removed the @Data annotation and implemented the getter and setter methods manually, which fixed the problem.

in addition, from my research, it appears that using a bulk remove method is more efficient in many-to-many relationships from a performance standpoint. Normally, Hibernate sends multiple queries for the deletion process, which can lead to performance issues. Therefore, it’s recommended to manually write a single delete query to improve performance in these cases.

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Data
  • User mentioned (0): @Data
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: can

79179595

Date: 2024-11-12 02:09:24
Score: 2.5
Natty:
Report link

Just added this one line in Docker file and it fixed the error

ENV JDK_JAVA_OPTIONS="--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"

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

79179591

Date: 2024-11-12 02:07:23
Score: 1
Natty:
Report link

I suggest you to use Iconify

This lib has all possible icons, a good integration with MUI and the able to import icons dinamicly, like:

import { Icon } from '@iconify/react';

<Icon icon='mdi:edit'/>
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wallison Felipe

79179581

Date: 2024-11-12 02:00:21
Score: 1
Natty:
Report link

let install via package manager like

npm i -D @trunkio/launcher

so you can run trunk via npx trunk

npx trunk install
npx trunk check
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: John Martin

79179575

Date: 2024-11-12 01:56:20
Score: 0.5
Natty:
Report link

when you use data['payee(name)'] it will define data type as dynamic in case it can't find value it that key and will return null (in this case your key is "payee(name)") in this case you can define type for value that return from future like this

FutureBuilder<File>( // change File to type you want ex. model String etc.
  future: // your future must return value File like <File>,
  builder: (context, snapshot) {
 // return widget here
}
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): when you useit
  • Low reputation (0.5):
Posted by: Lightn1ng

79179574

Date: 2024-11-12 01:54:20
Score: 2
Natty:
Report link

As https://github.com/pytorch/pytorch/issues/2575 said That's also why changing import order can fix things, because if you change it in a way that loads all your "static TLS" libraries first, then future "dynamic TLS" libraries will resize the DTV like normal, I just insert import cv2 at the 1st line of https://github.com/rupeshs/fastsdcpu/blob/main/src/app.py and solve the issue.

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

79179561

Date: 2024-11-12 01:42:17
Score: 2
Natty:
Report link

Probably the easiest way to implement your problem would be by using OR-Tools CP-SAT solver. I wouldn't worry about amount of constrains. This solver handles large-scale problems with ease.

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

79179551

Date: 2024-11-12 01:34:16
Score: 1.5
Natty:
Report link

Version 2 of ESP-NOW allows 1490 bytes.
Change your library and re-compile.

A little more - V2 will automatically adjust power and Tx rate, OR you can over-ride this and choose a slow, high power connection if plenty of power is available, or choose fast, low power if battery operation from nearby. Or whatever suits your project.

bye

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bruce Gennette

79179544

Date: 2024-11-12 01:30:15
Score: 3.5
Natty:
Report link

I was able to fix it by uninstalling Xcode and installing it again.

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

79179540

Date: 2024-11-12 01:20:13
Score: 1
Natty:
Report link

I solved this. It involved reinstalling the following using pip:

langchain openai langchain-openai langchain-community and Langchainhub

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Adam Chicago

79179534

Date: 2024-11-12 01:17:12
Score: 2
Natty:
Report link

The variable should not be wrapped in quote '.

So it should be

sql`lower(${PaymentMethodsTable.name}) = ${name}`

Source: https://github.com/drizzle-team/drizzle-orm/issues/1140#issuecomment-1722587563

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

79179531

Date: 2024-11-12 01:15:12
Score: 2
Natty:
Report link

I am using React Vite. Adding declare module "*.png"; for my .png imports to my vite-env.d.ts inside ./src resolved my issue.

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

79179522

Date: 2024-11-12 01:08:10
Score: 0.5
Natty:
Report link

I don't see a key of payee(name) in your data. Just payee_id.

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

79179518

Date: 2024-11-12 01:04:10
Score: 1
Natty:
Report link

I had the same issue. This fixed it for me - export VAGRANT_DISABLE_STRICT_DEPENDENCY_ENFORCEMENT=1 There is going to be a new version with the logger dependency issue fixed but this gets around it in the meantime.

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bill Brown

79179510

Date: 2024-11-12 00:55:07
Score: 1
Natty:
Report link

you can try to create a column

Column =
MAXX (
    FILTER (
        'Table 2',
        'Table 1'[priority] >= 'Table 2'[fr_priority]
            && 'Table 1'[priority] <= 'Table 2'[to_priority]
    ),
    'Table 2'[descr]
)

enter image description here

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

79179491

Date: 2024-11-12 00:36:03
Score: 4.5
Natty:
Report link

How safe are extensions in Visual Studio Code?

It's hard to quantify precisely. Anecdotally, the trend over the last 3 to 5 years is moving towards "less safe". (see https://www.bleepingcomputer.com/news/microsoft/vscode-marketplace-can-be-abused-to-host-malicious-extensions/)


Can extensions introduce malware?

Absolutely. It's code someone else wrote, executing on your computer.


Is it safe to install any extension?

No.

Nein. Non. Neel. Nei. Nie. Nej. (Darn. Can't think of any more ways to say no.)


Typical ways extensions are a security threat:

The real question is, how do you avoid problems with extensions?

Personally, my approach to this is generally to be skeptical by default. If I didn't write the code in question, I want to know where it came from. If where it came from looks odd to me, then I try to find an alternative backed by a trustworthy community or I decide to go without that extension.

If I need a way to do some research on an extension I am interested in, I recently found this: https://www.extensiontotal.com/. Not every extension has coverage, but it does get me into the headspace of "find out if this is trustworthy".

I also try to remember to use "Lateral Reading" techniques (https://www.openmindsfoundation.org/blog/the-power-of-lateral-reading/).

For me, this type of thinking applies to code just as much as it applies to other forms of content found online.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Blacklisted phrase (1): how do you
  • Blacklisted phrase (1): I want to know
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How
  • Low reputation (0.5):
Posted by: Sam Heuck

79179489

Date: 2024-11-12 00:34:02
Score: 3.5
Natty:
Report link

This is corrected with the latest SQL CU.

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

79179488

Date: 2024-11-12 00:33:02
Score: 2
Natty:
Report link

on WebApiConfig > Register Method

public static void Register(HttpConfiguration config) . . . config.Formatters.JsonFormatter.SerializerSettings = new JsonSerializerSettings { DateFormatString = "dd/MM/yyyy", Culture = new CultureInfo("pt-BR") };

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

79179484

Date: 2024-11-12 00:33:02
Score: 3.5
Natty:
Report link

I know this was an old question, But for anyone come here because they are having the same issue, I am adding my solution here.

It doesn't even have to be at the bottom, but I had some pages with an Entry field and a couple of buttons which had the same issue (Button clicks won't respond on iOS devices and sometimes even you can't type anything on Entry fields)). Tried lot of things but nothing worked (VS for Mac). The only solution worked for me is to replace the VerticalStackLayout with a GridView.

May not be a solution for everyone, but if it fits you, works perfectly.

Reasons:
  • Blacklisted phrase (1): but nothing work
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): having the same issue
  • Low reputation (1):
Posted by: Jay

79179470

Date: 2024-11-12 00:20:00
Score: 3.5
Natty:
Report link

you can change the number of y as shown in your picture and that will fix it

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

79179469

Date: 2024-11-12 00:18:59
Score: 3.5
Natty:
Report link

If you want to programtically draw shapes, check out react native skia https://shopify.github.io/react-native-skia/docs/getting-started/installation/

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

79179464

Date: 2024-11-12 00:16:59
Score: 1
Natty:
Report link

For Liquid syntax error, you may try to add {% raw %}...{% endraw %} Like below, this is to skip Liquid parsing:

[Go to Page One]({{ site.baseurl }}{% raw %}/Page One{% endraw %})
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ved Prakash

79179460

Date: 2024-11-12 00:15:59
Score: 0.5
Natty:
Report link

Snapshot command still creates another table, thus another model that cannot be named the same. Your snapshot should be named differently as in the example from dbt - https://docs.getdbt.com/docs/build/snapshots#add-a-snapshot-to-your-project. Hope this helps

Note: despite what dbt is saying, snapshots will not work for a lot of scd2 cases, they quite literally just capture the snapshot, not the full history.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: gurman99

79179453

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

Thanks. Yes it needs another mechanism. I found out that sleep() refreshes the page so the image disappears after the sleep delay. My not-so-elegant solution is to have an iframe that calls another script with just the unlink in it. It works.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): solution is
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Denis Hamelin

79179432

Date: 2024-11-11 23:57:56
Score: 0.5
Natty:
Report link

I got this error because of this line: <button type="button" id="button" onclick="Continue(); document.body.style.cursor = "wait"; this.disabled = true;"> Continue </button>

Note the double-quotes around wait. Changing the double-quotes around wait to single-quotes fixed it.

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

79179422

Date: 2024-11-11 23:51:55
Score: 1.5
Natty:
Report link

I was able to fix it by specifying the PKG_CONFIG_PATH

So adding this line ended up resolving it

ENV PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig

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

79179421

Date: 2024-11-11 23:51:55
Score: 3.5
Natty:
Report link

Vercel has documentation last updated on May 1, 2024 that says IT IS HIPPA complaint.

https://vercel.com/guides/is-vercel-hipaa-compliant

Their security page also gives an overview

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

79179394

Date: 2024-11-11 23:26:50
Score: 1
Natty:
Report link

I think your on the right track, you could read through https://tkdodo.eu/blog/using-web-sockets-with-react-query and see if you could improve it. Probably I would just set up the central useEffect subscription to invalidate the queries we need instead of faffing about with the functions in appState.

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

79179384

Date: 2024-11-11 23:20:47
Score: 9 🚩
Natty: 5.5
Report link

How to get player id. Could someone help?

Reasons:
  • RegEx Blacklisted phrase (3): Could someone help
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Nagesh B

79179381

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

I was migrating to Spring 6 and Java 17, compiling under Java 17. My solution was to create a special CharacterEscapeHandler class and pass it via properties to the marshaller & unmarshaller. The default MinimumEscapeHandler wasn't handling '\t' character translation only '\r\n' was working correctly. It took me a while to track down this handler. My needs were special because my attribute value contained '\t'. This may not be needed if you don't anticipate to handle this character.

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

79179374

Date: 2024-11-11 23:15:46
Score: 3
Natty:
Report link

I understood how to implement bold or italic fonts but I do not understand how to implement a condensed one for example

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

79179373

Date: 2024-11-11 23:14:45
Score: 1.5
Natty:
Report link

Ended up having invisible elements in the vertical scroll container with scroll-snaps.

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

79179366

Date: 2024-11-11 23:11:45
Score: 1
Natty:
Report link

I was able to get this to work thanks to the help above. First, I bind all lists into one long dataframe (they have the same columns). Then,I grouped by the group (CNN) and did the stats.

library(dplyr)
library(tidyverse)
 
BindSUB <- bind_rows(mylist)

BindSUB %>%
  group_by(CNNgroup) %>%
   summarise(value_mean = mean(CS, na.rm = TRUE), 
           lower_bound = quantile(CS, c(.025), na.rm = TRUE),
           upper_bound = quantile(CS, .975),na.rm = TRUE)
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: KNN

79179364

Date: 2024-11-11 23:09:44
Score: 1
Natty:
Report link

You've probably figured something out by now, but in case you haven't you might want to change "Selection behavior" on you "SomeTaskThatNestedStatesRequire" state to "Try Enter". That way execution won't automatically jump into its child states. And then you'll need to make a transition pointing to that nested "Wait" state when "SomeTaskThatNestedStatesRequire" does succeed.

Btw, in case you decide to go a global task route, you don't need to execute that logic every tick. One way to approach it is to use a combination of "Do Once" node followed by "Delay" node, which then resets the "Do Once" node

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

79179354

Date: 2024-11-11 23:03:43
Score: 0.5
Natty:
Report link

You need to set your log4j properties to send logs to STDOUT

Something along the lines as below:

log4j.rootLogger=ERROR, stdout

log4j.appender.STDOUT=org.apache.log4j.ConsoleAppender
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jason Smith

79179352

Date: 2024-11-11 23:02:41
Score: 12 🚩
Natty: 4.5
Report link

did u fix this problem? same issue

Reasons:
  • RegEx Blacklisted phrase (3): did u fix this problem
  • RegEx Blacklisted phrase (1.5): fix this problem?
  • RegEx Blacklisted phrase (1): same issue
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did
  • Low reputation (1):
Posted by: Беник Галстян

79179349

Date: 2024-11-11 22:59:40
Score: 2
Natty:
Report link

I got this failure if I have Firebase-iOS-sdk or GoogleSignIn package already added.

If you have those package added, remove them first, FirebaseUI-iOS have them included.

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

79179344

Date: 2024-11-11 22:55:39
Score: 4.5
Natty:
Report link

Both change it into int and adding bound check doesn't work for me.
But this work for me:
index &= 134217727u;
One limitation is 134217727u has to be power of 2 minus 1.

Reasons:
  • RegEx Blacklisted phrase (2): doesn't work for me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: diwulechao

79179333

Date: 2024-11-11 22:43:36
Score: 3.5
Natty:
Report link

Using qt and gnuplot 6.0 making lw a very small value, say .1, results in no line being drawn. This does not work with x11.

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

79179318

Date: 2024-11-11 22:34:35
Score: 0.5
Natty:
Report link

You are setting the player camera to enabled every frame. You should only change it when you start or end hiding. Your locker and your table are running every frame, and it seems that you locker is running afterwards, so it's overriding any changes that the table made.

Also, is there any reason why you aren't just using a single script for both?

This seems much simpler anyways:

public class HidingPlace : MonoBehaviour
{
    [SerializeField] private Camera hidingCamera;
    [SerializeField] private GameObject player;
    [SerializeField] private string playerTag = "Player";
    
    private Camera playerCamera; // Could also expose this with [SerializeField]
    private bool canHide;
    private bool isHiding;

    private void Awake()
    {
        // We are assuming the camera is a child of the player object
        playerCamera = player.GetComponentInChildren<Camera>();
        hidingCamera.enabled = false;
    }
    
    private void OnTriggerEnter(Collider collider)
    {
        // Only change canHide when we are walking around, not when already hiding
        if (isHiding) return;
        
        if (collider.CompareTag(playerTag))
        {
            canHide = true;
        }
    }
    
    private void OnTriggerExit(Collider collider)
    {
        // Only change canHide when we are walking around, not when already hiding
        if (isHiding) return;
        
        if (collider.CompareTag(playerTag))
        {
            canHide = false;
        }
    }
    
    private void Update()
    {
        if (Input.GetKeyDown(KeyCode.E) && canHide)
        {
            hiding = !hiding;
            if (hiding)
            {
                player.SetActive(false);
                hidingCamera.enabled = true;
            }
            else
            {
                player.SetActive(true);
                hidingCamera.enabled = false;
            }
        }
    }
}
Reasons:
  • Blacklisted phrase (1): is there any
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Alex Davies

79179317

Date: 2024-11-11 22:34:33
Score: 7 🚩
Natty: 4
Report link

Could not resolve com.google.jimfs:jimfs:1.1

ALGUEM ENCONTROU SOLUÇÃO PARA ESSE PROBLEMA?

ANDROID STUDIO MERDA

Reasons:
  • RegEx Blacklisted phrase (2): ENCONTROU
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: SILVIO

79179314

Date: 2024-11-11 22:32:32
Score: 1
Natty:
Report link

Until fixed, try to use pandas or SQLAlchemy equivalent functionality.

For my use case, pd.read_sql() did the trick.

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

79179311

Date: 2024-11-11 22:30:31
Score: 0.5
Natty:
Report link

I would strongly suggest you contact Capitalware Support.

It appears you have configured & are using the client-side security exit for MQ Authenticate User Security Exit (MQAUSX) and I presume that the z/OS MQAUSX server-side security exit is fully configured.

Application in production located on the same host as MQ and uses binding mode (no password, only user ID which is MVS user ID)

That comment does not make any sense. So, you are running the Java application on z/OS in the same LPAR as the z/OS queue manager? Also, in Bindings mode, the MQ client library does not use a channel, hence, a channel security exit would not be invoked.

If I intentionally use the wrong user ID or password I get a different error: Caused by: com.ibm.mq.jmqi.JmqiException: CC=2;RC=2009;AMQ9204

The reason code of 2009 means that the MQAUSX server-side security exit shutdown the channel. i.e. Failed authenication.

You said that you switched from using MQ v8.0 to the latest MQ CSD 9.4.1.0 but IBM has made changes to the underlining handling of UserId sent between the client-side to the server-side queue manager. I'm willing to bet you are getting burnt by this.

Caused by: com.ibm.mq.MQException: JMSCMQ0001: IBM MQ call failed with compcode '2' ('MQCC_FAILED') reason '2035' ('MQRC_NOT_AUTHORIZED').

It appears that your application's UserId & Password were successfully authenticated by the MQAUSX server-side security exit but failed on RACF/ACF2 authorization for "connecting to the queue manager" or "opening a queue" because the UserId being used for authorization is mismatched.

Ask your z/OS MQAdmin to check the MQAUSX log file to see what MQAUSX outputted It will have a detailed output for the authenticated UserId and the UserId used for accessing the z/OS queue manager. Also, ask the z/OS MQAdmin if the queue manager's log file recorded the RC of 2035 & what was in the error message.

Finally, did you switch channel names to connect to the z/OS queue manager? If so, what value is in the MCAUSER field of the old channel and new channel?

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Roger

79179308

Date: 2024-11-11 22:27:31
Score: 1
Natty:
Report link

To match what you see on screen with the plot panel or zoom, set the dpi to the ppi of your monitor, and adjust the size accordingly.

I want an image that is 107x50mm at 300 dpi, which is

> c(107,50)/25.5*300
[1] 1258.8235  588.2353

in pixels

to get that to match what I see in my plot zoom (with window scaled to desired size), I need to use

ggsave(file="myPath/plotName.jpg", plot=tmpPlotsGrouped, scale=1,
       units="px", width=1259, height=588, dpi=105)
Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1): I want
  • Has code block (-0.5):
Posted by: Michiel Duvekot

79179303

Date: 2024-11-11 22:23:30
Score: 1
Natty:
Report link

Thanks everyone for their assistance. I changed the WHERE query to project id and all is good now.

if (isset($_GET['project_id'])) {
$id= intval($_GET['project_id']); // Sanitize input

// Query to get the projects info

$projects = $wpdb->get_results($wpdb->prepare("SELECT * FROM 'table WHERE project_ind  = %d", $id));
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ian Young

79179301

Date: 2024-11-11 22:21:30
Score: 4
Natty:
Report link

So as @Quikler pointed out on the comment, I needed to use System.Data.SQLite.Core, in my case, more directly [Stub.System.Data.SQLite.Core.NetFramework][1]

Just wanted to point it out that is counter intuitive, since a lot of project use the "Core" keyword to .NetCore Libraries.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • No code block (0.5):
  • User mentioned (1): @Quikler
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Matheus Vieira

79179297

Date: 2024-11-11 22:19:29
Score: 4
Natty: 4
Report link

markercluster.js code

https://cdn.jsdelivr.net/gh/googlemaps/js-marker-clusterer@gh-pages/src/markerclusterer.js

Images m1 to m5:

https://github.com/googlearchive/js-marker-clusterer/tree/gh-pages/images

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

79179284

Date: 2024-11-11 22:16:28
Score: 2.5
Natty:
Report link

If I understood you correctly, you basically want your text to behave as a normal object to make it part of the sprite and not be a Ui object? I have a solution for you.

It's will looks like that when the circle order in layer is higert then the capsule and the text is child of the capsule.

enter image description here

I would appreciate it if you marked the answer if it solved your problem or let me know if this was not your intention.

Reasons:
  • Blacklisted phrase (1.5): would appreciate
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Noam Riahi

79179283

Date: 2024-11-11 22:16:28
Score: 2
Natty:
Report link

I was losing my mind over this for days! It looks like there is a bug where if the osm.pbf is too big (too many nodes) to successfully build a network, it doesn't give an error message -- it just returns "the network.dat file has been successfully created" anyway.

When I ran the same code with an osm.pbf with few enough nodes (in my case I clipped my state OSM to a bounding box around one city), the network.dat file showed up in my working directory.

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

79179280

Date: 2024-11-11 22:14:28
Score: 0.5
Natty:
Report link

Years late, I know, but running sudo su - to log into the root environment (and then running your commands), rather than just running sudo <command> (which runs the command as root, but in your environment), fixed this for me.

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

79179279

Date: 2024-11-11 22:14:28
Score: 0.5
Natty:
Report link

Thanks Marco. In my version of Tensorflow (2.16.2), the metrics param needs to be a list:

model.compile(
    loss = tf.keras.losses.BinaryCrossentropy(),
    optimizer = tf.keras.optimizers.Adam(learning_rate=0.01),
    metrics=['accuracy'])
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Patrice Gagnon

79179278

Date: 2024-11-11 22:14:28
Score: 2.5
Natty:
Report link

After some more searching, I found that I have to create an environment variable PYTHONPATH to point to the folder that has the module. Unfortunately, I cannot just point to the root module, but must each time, edit the variable and append a new folder for each module, to the path.

screenshot

folders

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: likejudo

79179276

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

Two things to note, although I have not validated whether they will fix your problem:

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

79179273

Date: 2024-11-11 22:13:27
Score: 2.5
Natty:
Report link

I am unsure if it is possible in the inspector itself but I was able to work around the issue by right clicking on the HTML element in the inspector and choose Edit as HTML. Then I copied all of the HTML and pasted it into my preferred IDE where a am able to search for the exact expression I was looking for, including the double quotes.

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

79179259

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

DELETE THE CACHE FOLDER AND RESTART YOUR TERMINAL/POWERSHELL

C:\Users.gradle\caches

If you got a Linux: /home/ your username /.gradle/caches

If you've got a Mac: /Users/ your username /.gradle/caches

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