79341013

Date: 2025-01-08 23:46:33
Score: 0.5
Natty:
Report link

I see that you were already able to resolve this yourself. However, I ran into a similar error message/conflict issue when trying to update a conda environment that had substantially diverged from the version I currently have that was built from a YAML file.

Since the issue I had is related and builds on the YAML suggestion by @merv, here's what worked (and confirmed with our maintainer as better than trying to fix individual conflicts):

  1. Active the current version of environment (that doesn't have the update you want), e.g.
conda activate env_name
  1. Make a copy of the revision list for the current (active) environment, e.g.
conda list --revisions > ~/env_name-revision-list.txt
  1. Make a copy of the requirements for the current (active) environment, in case you need to reproduce it or use it in the future, e.g.
conda list - e > ~/env_name-requirements.txt
  1. Then deactivate the current (active) version of the environment and then delete the conda environment - by name if named but can be safer to point to file path. Note: deactivate and deletion commands might differ in syntax depending on what version of conda you are running, this worked with v4.14:
conda activate # deactivate env_name
conda env remove -p path_to_environment # e.g. ~/anaconda3/envs/env_name

After completely removing the existing environment that had the conflict(s), then you can proceed with creating the updated environment (with the same name) from a YAML file with the most recent versions, e.g. conda env create -f /path_to_envs/envs/env_name.yaml

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

79341010

Date: 2025-01-08 23:45:33
Score: 0.5
Natty:
Report link

This is a good example of range/non-equi joins. Here Join checks if a value falls within some range of values. Snowflake has a different join type to deal with non-equi, or range joins

reference docs - https://docs.snowflake.com/en/sql-reference/constructs/asof-join

select distinct
    t1.id,
    t1.segment_id,
    t2.device_id,
    case when t2.id_type = 'abc' then 1 else 0 end as device_type,
    any_value(date_trunc('minute', t2.timestamp)) as drive_time,
    any_value(t2.latitude) as latitude,
    any_value(t2.longitude) as longitude,
    any_value(t2.ip_address) as ip_address
from 
    small_table t1 
ASOF JOIN  big_table t2 
MATCH_CONDITION(t2.date_col >= t1.date_col)
ON t2.high_cardinality_col_tried_for_clustering = t1.equivalent_col
group by 
    all;

More background docs for ASOF Join

https://blog.greybeam.ai/snowflake-asof-join/

https://select.dev/posts/snowflake-range-join-optimization

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

79341006

Date: 2025-01-08 23:43:33
Score: 1
Natty:
Report link

Solution for Visual Studio 2022

  1. Install vcpkg: https://learn.microsoft.com/en-us/vcpkg/get_started/get-started?pivots=shell-powershell

  2. Add VCPKG_ROOT = PATH_TO_VCPKG to your environment variables. Add VCPKG_ROOT to your PATH env variable

  3. In Visual Studio, in the solution explorer pane, right click on the C/C++ project name, select Properties from the dropdown. Select the Debug configuration. In the C/C++ tab, edit "Additional Include Directories", and add %VCPKG_ROOT%\packages\freeglut_x64-windows\include. In the linker\input tab, add %VCPKG_ROOT%\packages\freeglut_x64-windows\debug\lib\freeglutd.lib

  4. copy %VCPKG_ROOT%\packages\freeglut_x64-windows\debug\bin\freeglutd.dll to the x64\Debug directory of your project

  5. Compile and run

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

79340992

Date: 2025-01-08 23:31:30
Score: 0.5
Natty:
Report link

'messages' have to be a list of message of type HumanMessage/AIMessage/SystemMessage/ToolMessage. You can prepend the context (assuming it's a string) as a SystemMessage to your existing message list and then invoke.

llm.invoke([SystemMessage(content=context)] + existing_messages)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: biplob biswas

79340991

Date: 2025-01-08 23:31:30
Score: 3
Natty:
Report link

alguém já conseguiu resolver?

ainda estou com problema, mesmo após tentar as duas soluções,

segue abaixo meu package.json

{
  "name": "SentinelCLI",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "android": "react-native run-android",
    "ios": "react-native run-ios",
    "lint": "eslint .",
    "start": "react-native start",
    "test": "jest"
  },
  "dependencies": {
    "@react-native-community/masked-view": "^0.1.11",
    "@react-native-vector-icons/common": "^11.0.0",
    "@react-native-vector-icons/fontawesome6": "^6.7.1",
    "@react-native-vector-icons/material-icons": "^0.0.1",
    "@react-navigation/bottom-tabs": "^7.2.0",
    "@react-navigation/elements": "^2.2.5",
    "@react-navigation/native": "^7.0.0",
    "@react-navigation/native-stack": "^6.11.0",
    "react": "18.3.1",
    "react-native": "^0.76.5",
    "react-native-gesture-handler": "^2.21.2",
    "react-native-reanimated": "^3.16.6",
    "react-native-safe-area-context": "^5.1.0",
    "react-native-screens": "^4.4.0"
  },
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@babel/preset-env": "^7.25.3",
    "@babel/runtime": "^7.25.0",
    "@eslint/js": "^9.17.0",
    "@react-native-community/cli": "15.0.1",
    "@react-native-community/cli-platform-android": "15.0.1",
    "@react-native-community/cli-platform-ios": "15.0.1",
    "@react-native/babel-preset": "0.76.5",
    "@react-native/eslint-config": "0.76.5",
    "@react-native/metro-config": "0.76.5",
    "@react-native/typescript-config": "0.76.5",
    "@types/react": "^18.2.6",
    "@types/react-test-renderer": "^18.0.0",
    "babel-eslint": "^10.1.0",
    "babel-jest": "^29.6.3",
    "eslint": "^9.17.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "eslint-plugin-react": "^7.37.3",
    "jest": "^29.6.3",
    "prettier": "^3.4.2",
    "react-test-renderer": "18.3.1",
    "reactotron-react-native": "^5.1.12",
    "typescript": "5.0.4",
    "typescript-eslint": "^8.19.1"
  },
  "engines": {
    "node": ">=18"
  }
}

como também meu index.tsx

import './config/ReactotronConfig';
import React from 'react';
import {
  StatusBar,
  useColorScheme,
  StyleSheet,
} from 'react-native';
import { SafeAreaProvider, SafeAreaView } from 'react-native-safe-area-context';

import Routes from './routes';

function App() {
  const isDarkMode = useColorScheme() === 'dark';

  const backgroundStyle = {
    backgroundColor: isDarkMode ? '#121212' : '#7159c1', // Substituindo cores
    flex: 1, // Garante que o layout ocupe toda a tela
  };

  return (
    <SafeAreaProvider>
      <SafeAreaView style={backgroundStyle}>
        <StatusBar
          barStyle={isDarkMode ? 'light-content' : 'dark-content'}
          backgroundColor={backgroundStyle.backgroundColor}
        />
        <Routes />
      </SafeAreaView>
    </SafeAreaProvider>
  );
}

export default App;

imagem na tela

no Android ele funciona normal.

por favor alguém pode me ajudar?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolver?
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: jhonat heberson

79340989

Date: 2025-01-08 23:28:29
Score: 7
Natty: 7
Report link

Same problem here. You have any update?

Reasons:
  • RegEx Blacklisted phrase (1): Same problem
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: felipe

79340985

Date: 2025-01-08 23:26:28
Score: 0.5
Natty:
Report link

I've only tested this in the sandbox environment endpoint (https://wwwcie.ups.com/api/rating/v2409/rate)

Including the object
"SimpleRate": {
"Description": "SimpleRateDescription",
"Code": "XS"
},
Invokes the UPS Flat Rate logic and ignores the weight in favor of the package volume.

Flat Rate Codes are as Follows:

 XS - Extra Small    1 - 100 cubic inches  (Weight in response is 0.7)
 S  - Small        101 - 250 cubic inches  (Weight in response is 1.8) 
 M  - Medium       251 - 650 cubic inches  (Weight in response is 4.7)  
 L  - Large        651 - 1050 cubic inches (Weight in response is 7.6)
 XL - Extra Large 1051 - 1728 cubic inches (Weight in response is 12.4)  

Omit the "SimpleRate" object to fall back to package weight.

PS. The UPS API Doesn't calc the "Dimension" object to determine the package volume and determine the appropriate Flat rate code. That's up to the calling application.

First time poster long time fan.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Markham P

79340984

Date: 2025-01-08 23:25:28
Score: 0.5
Natty:
Report link

Currently, it is not possible to only see the list of selected files for a commit in GitHub for Windows.

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

79340980

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

in my case, I removed some of the initialOptions parameters, and then it worked. I think that PayPal docs and example project is not the updated one anymore

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Rasim SEN

79340979

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

Since Rails 8, this is now possible: just add a bang after the column type.

Example:

bin/rails generate model User email:string! name:string!

This was introduced in PR#52327.

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

79340978

Date: 2025-01-08 23:22:27
Score: 3.5
Natty:
Report link

Whay are not working my Facebook nat working 03407005712 Facebook

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

79340974

Date: 2025-01-08 23:20:27
Score: 1.5
Natty:
Report link

Commenting out any of the lines that include @react-native-community/cli-platform-android such as apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) fixed the issue.

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

79340964

Date: 2025-01-08 23:14:25
Score: 2
Natty:
Report link

You need to implement the solution directly with ActionCable. When you capture the action on the client side, make a request to the backend to retrieve the current user, then do whatever you need to do with the user and the information previously received through ActionCable.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Johan Donado B.

79340962

Date: 2025-01-08 23:13:25
Score: 2
Natty:
Report link

You can reference the main element and grab the value using it.

Ex: save "sindhi tech" as "data" enter stored value "data" into "search" grab value from element below stored value "data" and save it as "SRresult" check that stored value "SRresult" itself contains "sindhi tech"

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

79340956

Date: 2025-01-08 23:09:24
Score: 4
Natty: 4.5
Report link

Could you not use nvl(Cola,99999) Where 99999 is a theoretical maximum value to then make it no longer the least but now the theoretical max?

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

79340950

Date: 2025-01-08 23:03:22
Score: 3.5
Natty:
Report link

just remove the content-type headers :) this solved the issue in my case

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

79340946

Date: 2025-01-08 23:01:22
Score: 1
Natty:
Report link

You can also use the dynamic import function provided by next/dynamic to disable SSR on a specific component.

const Timer = dynamic(() => import('./Timer'), { ssr: false })

Or from the component itself:

export default DynamicTimer = dynamic(() => 
  Promise.resolve(Timer), {
    ssr: false,
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Colum Kelly

79340943

Date: 2025-01-08 22:57:21
Score: 2
Natty:
Report link

Since Easy Digital Downloads is a plugin, not a theme, it does not define any featured image sizes or thumbnail sizes. It does not control the page templates that are used to display the download custom post type, that is handled in the theme you are using.

If you need different featured image sizes, you would need to have your theme define them, or define them with a bit of custom code. Whenever an image is uploaded, all of the registered image sizes are created from the original source image.

If you do add more image sizes, you will need to use a tool to regenerate the new image sizes for images that were previously uploaded.

There are a number of ways you can add additional image sizes to your site and ensure that you can generate all the new image sizes in this article: https://www.wpbeginner.com/wp-tutorials/how-to-create-additional-image-sizes-in-wordpress/

Reasons:
  • Blacklisted phrase (1): this article
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: CKlosowski

79340934

Date: 2025-01-08 22:50:19
Score: 2
Natty:
Report link

It works for me if I remove the ':' after animate and before the "("

snippet

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

79340926

Date: 2025-01-08 22:41:17
Score: 2.5
Natty:
Report link

Per https://beam.apache.org/releases/javadoc/current/org/apache/beam/sdk/io/FileIO.html#:~:text=the%20file%22%2C%20ex)%3B%0A%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%7D))%3B-,Writing%20files,-write()%20and FileIO writes per window/pane and it inserts a group by key for those writes.

To handle this, you will either need to insert windows which will allow the write to complete or use triggers to fire early - https://beam.apache.org/documentation/programming-guide/#triggers

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

79340922

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

Click on "Test Suite Details" from the left-side menu

Replace the base URL with the new URL, and click "Rerun"

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

79340912

Date: 2025-01-08 22:30:15
Score: 2.5
Natty:
Report link

It is simply @update:current-items now. Hope that helps.

Reasons:
  • Whitelisted phrase (-1): Hope that helps
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sijan Panday

79340908

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

Add To Base Layer in Your Css File :


@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  html {
    overflow: auto !important;
    padding: 0 !important;
  }
}

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

79340907

Date: 2025-01-08 22:28:15
Score: 2
Natty:
Report link

Round ID:264247764035070016M5PTE Seed:qJkXDHfSITSOVKx0nkqIYQ2iCSMp13SSjqUATg4n Seed Cipher:1a45a4de18f798406a9c10459ba129eb90c5f3e58e9d5ba985cf6aca3665d394 Result:3.66 Seed and result:qJkXDHfSITSOVKx0nkqIYQ2iCSMp13SSjqUATg4n3.66 Result Cipher:d693c98daa33458b242533f8bacbe193bb0125f4d5a74e5b679d2f3868351124

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

79340897

Date: 2025-01-08 22:23:13
Score: 1
Natty:
Report link

Yes, host.minikube.internal if you use Minikube.

This is the equivalent of host.docker.internal. You may test by running,

minikube ssh
ping host.minikube.internal
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dumisani Kunene

79340893

Date: 2025-01-08 22:21:13
Score: 2
Natty:
Report link

Round ID:26423277704029190404A3W Seed: Result Cipher:5f35d6327e694d866cf4c6b23f932aeb1b2460c89d8adcbc62825a1fdf4a16e3 Seed Cipher:537fbeb57af66904c8e151a61397731b496ea01e7cdde054aabcae2ea1647972 Result:

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

79340892

Date: 2025-01-08 22:20:12
Score: 4
Natty: 4
Report link

the mitochondria is the powerhouse of the cell.

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

79340889

Date: 2025-01-08 22:20:11
Score: 2
Natty:
Report link

For a self hosted agent do the following.

  1. Stop the agent process
  2. remove the work folder
  3. config.sh remove (to remove the agent from pool)
  4. Reconfigure the agent with the same name or a different name.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: David Jeeves

79340879

Date: 2025-01-08 22:13:10
Score: 1.5
Natty:
Report link

You can try adding "esModuleInterop": true to your tsconfig.json file and load your handlers in your serverless.yml configuration file from dist folder.

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

79340872

Date: 2025-01-08 22:10:09
Score: 2.5
Natty:
Report link

Use a safe device package: https://pub.dev/packages/safe_device You can do this to achieve what you want: bool isDevelopmentModeEnable = await SafeDevice.isDevelopmentModeEnable;

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

79340866

Date: 2025-01-08 22:06:08
Score: 2
Natty:
Report link

You could create a replica image of the 404 or restricted screen,then change the background color and make the hidden link the same color as the background.Use css styling to make this work while using Html to display the image and link using the and Elements.

I hope this answers your question. Good luck!

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

79340862

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

Updated answer:

I had to create a requirements-local.txt inside the docker/ per docker/README.md.

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

79340861

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

You should be able to change:

| beam.Map(lambda x: f"{x[0]},{x[1]}")

to

| beam.Map(lambda x: f"{x[0]},{x[1]}").with_output_types(str)

this error is coming because Beam is not able to automatically infer the output type of your map stage, so it is not able to convert it to a schema'd element.

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

79340856

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

https://developer.arm.com/documentation/dui0491/i/Compiler-specific-Features/--align

This keyword from ARM Compiler V5. For example this is part from HAL library

#if defined (__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050) /* ARM Compiler V6 */
  #ifndef __ALIGN_BEGIN
    #define __ALIGN_BEGIN
  #endif
  #ifndef __ALIGN_END
    #define __ALIGN_END      __attribute__ ((aligned (4)))
  #endif
#elif defined ( __GNUC__ ) && !defined (__CC_ARM) /* GNU Compiler */
  #ifndef __ALIGN_END
    #define __ALIGN_END    __attribute__ ((aligned (4)))
  #endif /* __ALIGN_END */
  #ifndef __ALIGN_BEGIN  
    #define __ALIGN_BEGIN
  #endif /* __ALIGN_BEGIN */
#else
  #ifndef __ALIGN_END
    #define __ALIGN_END
  #endif /* __ALIGN_END */
  #ifndef __ALIGN_BEGIN      
    #if defined   (__CC_ARM)      /* ARM Compiler V5*/
      #define __ALIGN_BEGIN    __align(4)
    #elif defined (__ICCARM__)    /* IAR Compiler */
      #define __ALIGN_BEGIN 
    #endif /* __CC_ARM */
  #endif /* __ALIGN_BEGIN */
#endif /* __GNUC__ */

/* Macro to get variable aligned on 32-bytes,needed for cache maintenance 
purpose */
#if defined   (__GNUC__)      /* GNU Compiler */
  #define ALIGN_32BYTES(buf)  buf __attribute__ ((aligned (32)))
#elif defined (__ICCARM__)    /* IAR Compiler */
  #define ALIGN_32BYTES(buf) _Pragma("data_alignment=32") buf
#elif defined (__CC_ARM)      /* ARM Compiler */
  #define ALIGN_32BYTES(buf) __align(32) buf
#endif
enter code here
Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Argishti Avetikyan

79340847

Date: 2025-01-08 21:57:06
Score: 1
Natty:
Report link

If you’re looking for a straightforward way to cycle through a list of URLs in a slideshow format, check out urlslideshow.com. It allows you to supply any set of URLs (for example, web pages, images, or videos), and it will rotate through them on a specified timer. There’s no software to install - just set up your slideshow and share the link or run it on a display.

For full disclosure, I’m the author of urlslideshow.com.

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

79340840

Date: 2025-01-08 21:54:04
Score: 7.5 🚩
Natty: 6.5
Report link

How do you get SaveToFile or WriteToFile function to work? I'm new to Rad Studio and working on saving to a json file. When I use any of the options I get an error like [dcc32 Error] Unit3.pas(136): E2003 Undeclared identifier: 'WriteToFile'

Reasons:
  • Blacklisted phrase (1): How do you
  • RegEx Blacklisted phrase (1): I get an error
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How do you
  • Low reputation (1):
Posted by: NBrown

79340838

Date: 2025-01-08 21:54:04
Score: 1.5
Natty:
Report link

Maestro does not exactly depend on the framework an app was built or its underlying architecture. It depends mainly on accessibility information(semantics information produced by your app).

Short answer to your question? Maestro works with the new RN architecture.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
Posted by: Codefarmer

79340836

Date: 2025-01-08 21:52:04
Score: 0.5
Natty:
Report link

I kept searching for an answer and couldn't solve the issue. In my case, it turned out that the signal 9 was due to the process within my containers exceeding available resources, causing it to silently die.

The solution was to increase memory and cpu. Hope this helps someone else!

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

79340833

Date: 2025-01-08 21:51:03
Score: 1
Natty:
Report link

Try to remove imports and use string literals. Reffering to Import cycles.

Smth like this:

class Parent(Base):
...
children: Mapped[list["Child"]] = relationship("Child", back_populates="parent")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nikita

79340832

Date: 2025-01-08 21:50:03
Score: 2
Natty:
Report link

I would suspect two things:

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

79340831

Date: 2025-01-08 21:50:02
Score: 7 🚩
Natty: 5
Report link

Were you ever able to get a solution to this issue? I am currently experiencing the same thing.

Reasons:
  • RegEx Blacklisted phrase (3): Were you ever
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex

79340829

Date: 2025-01-08 21:49:02
Score: 0.5
Natty:
Report link

In 2025, this is not possible with sklearn (I spent a while looking for a solution)

This is a valid task in multi-class logistic regression. You are asking to find a single set of coefficients that simultaneously explain all of the classes. Sklearn (and other packages) find a set of coefficients for each class, which is why it returns a 6x4 matrix - you have 6 features and 4 targets.

The PyLogit package can fit your model. There is an example of performing logistic regression on a dataset with 4 input features and 4 targets - see Specify and Estimate a Multinomial Logit (MNL) Model.

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

79340828

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

You probably need to set the default printer on that machine to a printer that supports that font.

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

79340827

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

I had a similar problem and all I had to do was try the url in production, say {URL}/subscribe, then ensure you get this

{ "error": "Method GET not allowed" }

if you do not get that, check your commit on git properly to see if that route is being pushed to git and it is not being ignored. If the file is being ignored, just add it properly and redeploy.

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

79340822

Date: 2025-01-08 21:45:00
Score: 10.5 🚩
Natty: 5.5
Report link

@PatrickLu-MSFT I am using host Agent, and facing same problem. However if I run my test locally on laptop it passes but not on azure host Agent?

Q- do I need to setup some vpn on azure pipeline? Please provide guidance

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (2.5): Please provide
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing same problem
  • Ends in question mark (2):
  • User mentioned (1): @PatrickLu-MSFT
  • Low reputation (1):
Posted by: Ashu Rai

79340813

Date: 2025-01-08 21:39:58
Score: 2.5
Natty:
Report link

For me, adding this in php.ini worked like a charm.

xdebug.start_with_request=yes

Reasons:
  • Blacklisted phrase (1): worked like a charm
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Leutecia

79340811

Date: 2025-01-08 21:39:58
Score: 6.5
Natty: 7
Report link

I also want to do a similar setup. I have Kamstrup Eye. Is it possible to share the info. How can I pm you?

Thanks.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): Is it possible to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: wolfguru

79340801

Date: 2025-01-08 21:35:56
Score: 1.5
Natty:
Report link

PL/SQL Developer, by Allround Automations, does this automatically. It turns this:

some_line_of_code
some_line_of_code
/* some comment about code */
some_line_of_code
some_line_of_code

into this:

/*some_line_of_code
some_line_of_code
\* some comment about code *\
some_line_of_code
some_line_of_code*/
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Kitty

79340798

Date: 2025-01-08 21:34:56
Score: 2
Natty:
Report link

You have a margin:auto on .container[data-type="links-lowerleftcontainer"] which is automatically centering it.

Removing that delcaration fixes the issue. See screenshot. enter image description here

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

79340790

Date: 2025-01-08 21:31:56
Score: 1.5
Natty:
Report link

I was able to run this, crt.Sleep "value in MilliSeconds"

For example: crt.Sleep 5000 waits for 5 seconds and this is working for me.

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

79340784

Date: 2025-01-08 21:30:55
Score: 1
Natty:
Report link

Uncheck "Sign SAML requests to this provider" on the Identity Provider, that will stop declaring the NameID type

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

79340777

Date: 2025-01-08 21:22:53
Score: 2.5
Natty:
Report link

It still works exactly as described above using KeyboardEvent. Might be helpful to listen to events so you know what to emulate.

What I'm wondering is if this violates policy.

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

79340763

Date: 2025-01-08 21:15:51
Score: 1.5
Natty:
Report link

This issue was resolved for me by updating React Native to version 0.71.15.
Here are the steps I followed after updating:

  1. Run:

    yarn install npm install

  2. Then execute:

    watchman watch-del-all rm -rf node_modules && yarn install cd android && ./gradlew clean && cd .. yarn start --reset-cache

  3. Finally, for iOS:

    cd ios pod install cd ..

This resolved the "Verification checksum was incorrect" issue for me.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mohammad Aref Salehi

79340759

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

if you use module "vpc" check presence of

enable_nat_gateway = true
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: David

79340753

Date: 2025-01-08 21:10:50
Score: 2.5
Natty:
Report link

While it is true that gemini generate_content api doesn't store any data. So that you have to send entire chat history by yourself.

However gemini does provide chat_session api. During an active chatSession object, gemini remembers the full conversation history.

Usage example -

chatSession = genai.GenerativeModel("gemini-pro").start_chat()
print(chatSession.send_message("Can you suggest me a new game?").candidates[0].content.parts[0].text)
print(chatSession.send_message("Tell me about yourself").candidates[0].content.parts[0].text)
print(chatSession.send_message("Do you remember what all Role-playing games you had suggested me?").candidates[0].content.parts[0].text)
Reasons:
  • RegEx Blacklisted phrase (2.5): Can you suggest me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pragati

79340742

Date: 2025-01-08 21:04:48
Score: 3
Natty:
Report link

We can in fact retrieve the overrides arguments in the protoPayload field of the logs, under protoPayload.response.spec.template.spec.containers, which I missed at first.

Using the label_extractor parameter of monitoring policy should do the trick then ! Thanks a lot DazWilkin for your help in the comments.

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

79340739

Date: 2025-01-08 21:03:48
Score: 0.5
Natty:
Report link

Encountered this exact problem myself and determined the cause for the "setting classpath containers" action taking a very long time (or appear to just hang) is a that there is a large amount of content in your build output folder (for maven projects, that is normally the folder/directory at {project_root}/target) and it is causing eclipse (for some reason) get stuck on the "setting classpath containers" action.

Try to following to resolve the problem:

  1. Close eclipse (you might have to kill pr end task eclipse to get it to close).
  2. To avoid deleting anything important, do a review your
    {project_root}/target folder and its contents to make sure there
    isn't anything in that folder that you placed there yourself (aka
    anything you know for sure you need to keep around and should not
    delete - would be a special case scenario).
  3. Open your favorite shell and remove everything under the {project_root}/target folder (excluding, of course, anything that you identified in step #2 that needs to remain).
  4. Re-launch eclipse and hopefully that problem is resolved.
Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Jason Ridge

79340730

Date: 2025-01-08 20:57:46
Score: 3.5
Natty:
Report link

I recently ran into the same issue while developing my app. I started off in debug mode and, following the docs, I added the SHA-1 and SHA-256 keys to the Firebase project settings. Everything was working fine so far. But when I switched to the release version to see how my app behaves in that environment, I started encountering errors.

I tried a bunch of different solutions, including directly adding the key to Google Cloud GCP interface to add restrictions to API keys, but none of that worked. After some more troubleshooting, I decided to try adding the key back to Firebase's project settings. And to my surprise, that fixed the issue! Now, everything works as expected in both debug and release mode. Firebase project settings As you can see I have 4 keys now(2 for debugging and 2 for release)

So, if you're facing similar issues, make sure you've added both SHA-1 and SHA-256 keys to Firebase's project settings. That might just do the trick!

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): facing similar issue
  • Low reputation (1):
Posted by: Dilan Nde

79340728

Date: 2025-01-08 20:57:46
Score: 2.5
Natty:
Report link

Solved Answer provided here: https://www.reddit.com/r/androiddev/comments/1hwszn9/looking_for_help_for_hilt_dependency_injection/

Kotlin 2.1 requires ksp2 which is only supported by hilt starting at update 2.54

Step 1: change hilt from 2.53.1 to 2.54

Step 2: add ksp to root level plugin declaration

Step 3: in module level build.gradle, remove "implementation(libs.hilt.compiler)"

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

79340727

Date: 2025-01-08 20:56:46
Score: 3
Natty:
Report link

I found the problem..

the filename was pointing to the wrong folder. When I got catalina.home working (by adding sys:) this started to work.

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

79340713

Date: 2025-01-08 20:48:43
Score: 3
Natty:
Report link

I got it using: npm run start It runs the local version using Angular

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

79340712

Date: 2025-01-08 20:47:43
Score: 1
Natty:
Report link

For after, consider the same width and height as before and use scale to make the inner circle smaller as desired. Only in this case will it be aligned:

.custom-radio+label:after {
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  transform: scale(65%) !important;
  ...
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Marzieh Bn

79340704

Date: 2025-01-08 20:44:42
Score: 1
Natty:
Report link

What I used recently while extracting an exe from a zip file

    $newFile = New-Item -Path "C:\Temp" -Name "xyz.exe"  # -Force if overriding

    try {
        # open a writable FileStream
        $fileStream = $newFile.OpenWrite()

        # create stream writer
        $streamWriter = [System.IO.BinaryWriter]::new($fileStream)

        # write to stream
        $streamWriter.Write($SomeExecutableData)
    }
    finally {
        # clean up
        $streamWriter.Dispose()
        $fileStream.Dispose()
        # if the file is nastily big, [GC]::Collect()
    }

There might be a more modern method than [System.IO.BinaryWriter]::new($fileStream), I'm too lazy to look it up at the moment but might edit later.

Most of the credit goes to: https://stackoverflow.com/a/70595622/3875151

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What I use
  • Low reputation (0.5):
Posted by: 9 Guy

79340696

Date: 2025-01-08 20:41:41
Score: 1.5
Natty:
Report link

These pages on Quarto's Theme Options and Custom Themes should help you. Based on the example file on the second page, I think this would do it for you:

/*-- scss:rules --*/
h1 {
  font-weight: bold;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Brian

79340691

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

I have tried nl-NL format and it's working fine.

decimal dutch = 1000M;
Console.WriteLine (dutch.ToString("C", new CultureInfo("nl-NL")));

Result is: €1.000,00

Can you retry it, and if it's not working, try to pass parsed currency string as view variable

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

79340677

Date: 2025-01-08 20:34:40
Score: 0.5
Natty:
Report link

Kotlin when used with recent versions ( at least 2.1.0 ) and they don't even bother to document it, like here : https://kotlinlang.org/docs/kotlin-evolution-principles.html . This stinks. When trying to get a project to compile, it showed min sdk was 24 for 2.1.0. No idea where I can find which version can be used for 21, but clearly this matters.

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

79340676

Date: 2025-01-08 20:33:39
Score: 1
Natty:
Report link

I think you need to pull the .data property off the returned promise:

const token = (await Notification.getDeviceTokenPushAsync()).data;

On Android, that will return an FCM token that you can send notifications through FCM. HOwever, on iOS this returns the APN device token, which cannot be used with FCM.

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

79340664

Date: 2025-01-08 20:27:38
Score: 1
Natty:
Report link

I have tried most answers here along with others on SO, nothing worked for me. The only thing that finally worked was:

  1. Force quitting all Docker related processes
  2. Installing Docker Desktop from the command line, instead of opening up the .dmg file from the Downloads folder. The CL instructions can be found here: docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?.

I'm not sure why step 2 worked instead of the regular download/install process, but I'm hoping it can help someone else.

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

79340662

Date: 2025-01-08 20:27:38
Score: 1
Natty:
Report link

2025 version based on fabric 6.5.4 (typescript) and @VitaliiBratok answer:

import { Point } from 'fabric';

const transformedPoints: Point[] = polygon
      .get('points')
      .map((p: Point) => {
        return new Point(p.x - polygon.pathOffset.x, p.y - polygon.pathOffset.y);
      })
      .map((p: Point) => {
        return p.transform(polygon.calcTransformMatrix());
      });
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @VitaliiBratok
  • Low reputation (0.5):
Posted by: João Victor

79340660

Date: 2025-01-08 20:26:37
Score: 1.5
Natty:
Report link

Traefik uses static (entrypoints, providers, certresolver, etc.) and dynamic (routers, middlewares, services, tls, etc.) configuration (doc). The dynamic configuration needs to be loaded by a provider in static config, like providers.docker or providers.file.

Check simple Traefik example (and the other folders) for best practice.

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

79340651

Date: 2025-01-08 20:23:37
Score: 2
Natty:
Report link

Easist you use the fmpy GUI fmpy GUI for recompiling on a new platform

Or you use the fmpy command compile_platform_binary (also on the target platform) as can be seen in this example: https://github.com/CATIA-Systems/FMPy/blob/main/tests/test_c_code.py

Regarding Intel vs. M-chip: I am not familiar with this. For FMI 3.0 this should generate different binaries with different platform tuples, see https://fmi-standard.org/docs/3.0.2/#platform-tuple-examples. But I never tried this on a Mac.

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

79340642

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

For me, the vite-tsconfig-paths plugin works very well. However, remember to include the paths in tsconfig.app.json, as its settings can override those in tsconfig.json.

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

79340636

Date: 2025-01-08 20:14:34
Score: 2
Natty:
Report link

If anyone else is having this issue then it may also help to check what data types you have included in your df. Apparently primitive data types seem to be more likely to work correctly with drop_duplicates(). For example I had a df with PosixPaths that were all identical, but drop_duplicates() would not remove any of them until I changed the PosixPaths to strings.

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

79340634

Date: 2025-01-08 20:14:33
Score: 4
Natty: 4.5
Report link

Same error here! When I type the command yarn ios or yarn start, metro recognizes it and appears in the emulator: "Downloading 100%" and does not load my application.

Reasons:
  • RegEx Blacklisted phrase (1): Same error
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Guilherme Campos

79340633

Date: 2025-01-08 20:13:33
Score: 0.5
Natty:
Report link

Not sure what's exactly is broken in the latest version of the @aws-sdk, but if you pin the version of the package to the older one that worked for you, this should solve the issue

In your package.json set the version of the client-s3 and client-dynamodb to

  "dependencies": {
    "@aws-sdk/client-s3": "3.701.0",
    "@aws-sdk/client-dynamodb": "3.701.0",
    ...
  },

Don't forget to run:

npm install

It would probably make sense to create an issue in AWS SDK Github repo to ensure they are aware of the problem (if it doesn't exist yet).

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @aws-sdk
  • Low reputation (0.5):
Posted by: Hellaren

79340632

Date: 2025-01-08 20:13:33
Score: 0.5
Natty:
Report link

Check this project please its on icp(dfinity) block chain:📸 Securely Send Photos on the Blockchain & Earn $DFX Tokens! 🌐 Hey everyone! 👋

I’m excited to introduce Secure Image Chain, a Web3-based platform that lets you send photos securely, anonymously, and directly on the blockchain! 🚀

Here’s what makes Secure Image Chain awesome:

💼 Earn $DFX Tokens: Every time you send a photo, you get rewarded with 100 DFX tokens!

🔐 Enhanced Privacy: Lock your photos with a password for an extra layer of security.

🌐 Fully Decentralized: Built on the ICP blockchain, your data stays anonymous and safe.

🤝 Community-Focused: Be part of the blockchain revolution while sharing memories securely.

How to Get Started:

Visit our platform login with internet identity upload a photo and send it to your friend(must enter internet identity your friend).

Optionally lock it with a password.

Earn $DFX tokens instantly (you must enter principal id of your wallet)!

💡 We’d love your feedback and support. Let’s make blockchain secure and fun for everyone!

OpenChat Listing Proposal:https://nns.ic0.app/proposal/?u=3e3x2-xyaaa-aaaaq-aaalq-cai&proposal=1519

Learn More:

🌐 Website: https://secureimagechain.com 📖 Twitter: https://x.com/SecureChainDFX

🌐 OpenChat Community: https://oc.app/community/r3h3a-kiaaa-aaaac-ach2q-cai/?ref=bisdo-eqaaa-aaaar-bnora-cai

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

79340631

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

as stated above key=values and you must have state.tf in same directory where you run terraform, it doesnt look for tf files in subdirs e.g. enter image description here

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

79340624

Date: 2025-01-08 20:09:32
Score: 0.5
Natty:
Report link

Use ta.stdev

something like that:

//@version=6
indicator('D O', 'D O', true)
[do_1] = request.security(syminfo.tickerid, 'D', [open], lookahead = barmerge.lookahead_on)
plot(do_1, title = 'Open', color = color.new(color.yellow, 0), linewidth = 2, trackprice = true)


lookbackInput = input(5)

var float doStdev = na
if do_1 != do_1[1]
    doStdev := ta.stdev(do_1, lookbackInput)
    doStdev

plot(do_1 + doStdev * 0.59)
plot(do_1 + doStdev * -0.59)

test

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

79340623

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

It can be fixed by using

system('python [.py filename]')

Thanks to @Cris Luengo for the solution

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • Has code block (-0.5):
  • User mentioned (1): @Cris
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Vanhanen_

79340622

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

I did the process manually and I only see a POST request to get the .pdf Chrome network after clicking button manually

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

79340615

Date: 2025-01-08 20:05:30
Score: 0.5
Natty:
Report link

Unit tests should test just the code, not the environment the code is deployed in. Since the unit tests test the code, isolated from other dependencies and environmental concerns, it does not make sense to run the tests, until the code changes again. If your unit tests are dependent on things outside of your code, these are not good unit tests.

Now, when you get to integration testing, this is a different story.

Reasons:
  • No code block (0.5):
Posted by: Scott Merritt

79340608

Date: 2025-01-08 20:02:29
Score: 9
Natty: 7.5
Report link

hi bro i have same problem do you know to do it in windows ?

Reasons:
  • Blacklisted phrase (1): i have same problem
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i have same problem
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bazooka

79340605

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

The documentation describes this as "undefined behavior":

Your function must send an HTTP response. If the function creates background tasks (such as with threads, futures, JavaScript Promise objects, callbacks, or system processes), you must terminate or otherwise resolve these tasks before sending an HTTP response. Any tasks not terminated before the HTTP response is sent might not be completed, and might cause undefined behavior.

So this sort of pattern may simply not be possible.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Jess The Witch

79340595

Date: 2025-01-08 19:56:27
Score: 3
Natty:
Report link

Trying to restrict folder list access to current logged in user only. Blockquote

Can you expand what you mean by this? Only your authenticated users would receive just in time credentials for read/write access based on the access grant for that folder

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

79340588

Date: 2025-01-08 19:54:27
Score: 2
Natty:
Report link

Sorry! We have some difficulties while trying to start Text To Speech! You may need to follow some additional steps to make the app working smoothly.

Set Defau

Still Facing Issue?

If you are still facing issue please contact our 24/7 support team. We will follow up with your issue ASAP

JOIN USER COMMUNITY

EMAIL SUPPORT

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

79340584

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

the issue is there's a circular dependency between StreamSession and Listings.

What you can do is avoid doing inheritance, and just pass the steamSession instance to Listing so it can still access session data.

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

79340580

Date: 2025-01-08 19:49:25
Score: 3.5
Natty:
Report link

There is nothing wrong. It gave the correct answer according to what you want to do.

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

79340571

Date: 2025-01-08 19:45:24
Score: 2
Natty:
Report link

With the storage explorer, you do have the option to see a count, but it is a bit hidden at the bottom of the explorer window. It can be confusing if there are zero visible messages as the whole ui shows No data available. The example here shows 1 message that will be visible in an hour or two. enter image description here

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

79340561

Date: 2025-01-08 19:42:24
Score: 0.5
Natty:
Report link

None of the above proposals seemed to work but thanks for the well-written comment!

After quite some while of trials, I finally found a working way to seek until the stream end. For some reason timeout is also necessary, probably should be ideally some play callback event. Player.seek() didn't seem to function at all with my test track.

player = new bitmovin.player.Player(document.getElementById('player-container'), {playback: { live: { edgeThreshold: 5 }, autoplay: true, muted: true}});

player.load(source).then(() => {
  if(player.isLive()){
    setTimeout(() => player.timeShift(Infinity), 10)
  }
}).catch((error) => console.error('Error loading player:', error));
Reasons:
  • Blacklisted phrase (0.5): thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: sukkis

79340560

Date: 2025-01-08 19:41:23
Score: 2.5
Natty:
Report link

You should provide a no argument constructor for the class with the default values you desire Gson to populate when there is a missing field, it only works that way.

Source: https://github.com/google/gson/blob/main/UserGuide.md#custom-serialization-and-deserialization

The other choice is to define an instance creator so Gson can use it to populate the missing fields. See here: https://github.com/google/gson/blob/main/UserGuide.md#writing-an-instance-creator

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

79340559

Date: 2025-01-08 19:40:23
Score: 1
Natty:
Report link

This is very annoying and still persistent after the last update to v6.1

I had to type cast this like:

import { Helmet as HelmetImport, HelmetProps } from 'react-helmet';

const Helmet = HelmetImport as React.ComponentClass<HelmetProps>;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Leo Gonzalez

79340554

Date: 2025-01-08 19:39:22
Score: 3
Natty:
Report link

Regarding the missing cert file, is due to the env TMPDIR. Cert is expected to in /tmp/k8s-webhook-server/serving-certs/tls.crt. You can set the TMPDIR to /tmp.

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

79340535

Date: 2025-01-08 19:32:19
Score: 9.5 🚩
Natty: 4
Report link

I have a problem and I am looking for a solution. We are working on a website with the topic PinoyFlix, which is a video platform. On this platform, we copy the iframe of videos from competitors' blogs and paste them on our website. Recently, the links we use to display videos are no longer working.

Here's an example of one of the problematic links: "https://play.vkhost.me/video.php?data=aHR0cHM6Ly9pYTYwMDgwNC51cy5hcmNoaXZlLm9yZy8yL2l0ZW1zL3dsLTgtZi9XTDhGLm1wNA=="

Could you please guide me on how to use such links on our blogs so that the videos display correctly? What steps should we take to ensure the links work?

Reasons:
  • Blacklisted phrase (1): guide me
  • Blacklisted phrase (2): I am looking for
  • RegEx Blacklisted phrase (2.5): Could you please guide me
  • Contains signature (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: PinoyFlixSu

79340527

Date: 2025-01-08 19:27:17
Score: 5
Natty:
Report link

Could you provide insides of your .csproj for the project? Happend to me once when I was switching IDE, but simple clean and rebuild helped (did not change any build actions). Also try building through console with dotnet publish and check if the problem stays.

Reasons:
  • RegEx Blacklisted phrase (2.5): Could you provide
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: aw3

79340516

Date: 2025-01-08 19:22:15
Score: 7
Natty: 7
Report link

I can try run my code by google colab online and use cufflinks library for visualize my data unable to see graph by iplot, how can i solve this problem?

Reasons:
  • Blacklisted phrase (0.5): how can i
  • RegEx Blacklisted phrase (1.5): how can i solve this problem?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohammad Dowlatshah

79340511

Date: 2025-01-08 19:21:15
Score: 0.5
Natty:
Report link

I'm using Bitbucket and there's an option to enable LFS in the settings.
Repository Settings | Repository Details | Large File Storage (LFS) | Allow LFS After enabling this, you will be able to push.

Note: Only the repository administrator will be able to change this setting.

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

79340505

Date: 2025-01-08 19:20:14
Score: 0.5
Natty:
Report link

Exiftool can only add this tag if there is an already existing SubIFD.

From this post:

This will happen if the file doesn't contain a SubIFD, since ExifTool won't create a SubIFD

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

79340499

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

If anyone comes here late like I did. I found that re-uploading the code also stops it

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

79340480

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

Insulation Estimation for Residential & Commercial Estimates Industrial Mechanical mechanical insulation estimating Thermal Insulation Estimation Fireproofing & Firestopping Estimation Roofing Estimation Waterproofing & Dampproofing Estimation Acoustic & Sound Proofing Estimation Estimation of Insulation for boilers, HVAC systems, ductwork, pipeworks, valves, plumbing, equipment, etc.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Net Beam

79340467

Date: 2025-01-08 19:07:11
Score: 1
Natty:
Report link

Not sure why but this works. Likely related to SceneKit internal implementation, as Sweeper suggested.

func helper_cloneGeo(geo: SCNGeometry) -> SCNGeometry {
  return SCNNode(geometry: geo).clone().geometry!
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Huan Lin