79560457

Date: 2025-04-07 17:18:43
Score: 4
Natty: 4
Report link

I also am looking for an answer to this.

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

79560453

Date: 2025-04-07 17:16:42
Score: 1
Natty:
Report link

By using while loop, write a JS program to print the numbers from 100 to 1.

<script type="text/javascript">
  for (let i =100; i >=1; i--) {
    if (i>0) {
      document.write('The Number is' + i + '<br>');
    }
  }
</script>

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

79560444

Date: 2025-04-07 17:11:40
Score: 3.5
Natty:
Report link

Use 'Run Current File in Interactive Window'.

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

79560442

Date: 2025-04-07 17:09:40
Score: 1.5
Natty:
Report link

https://tailwindcss.com/docs/adding-custom-styles#adding-custom-utilities

@import "tailwindcss";

@theme {
  /* ... */
}

@utility catpc {
    background-color: blue;
}
@utility catmobile {
  background-color: red;
}

This works for every utility class in the framework, which means you can change literally anything at a given breakpoint — even things like letter spacing or cursor styles.

https://tailwindcss.com/docs/responsive-design

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

79560428

Date: 2025-04-07 17:03:39
Score: 3
Natty:
Report link

The issue seems to stem from the way manual scaling is handled by the App Engine. When a new instance was trying to spawn it called /_ah/start endpoint, but since the instances were limited to 1 it was failing over and over again.

### Solution

Docs

https://cloud.google.com/appengine/docs/legacy/standard/python/how-instances-are-managed#startup[How Instances are managed](https://cloud.google.com/appengine/docs/legacy/standard/python/how-instances-are-managed#startup)

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

79560418

Date: 2025-04-07 16:59:37
Score: 1.5
Natty:
Report link

Check the number of rows vs clustering factor

select index_name, num_rows, clustering_factor from dba_indexes where index_name = <your index>;

If clustering_factor is > num_rows, the underlying table is fragmented so the index has a high clustering factor. Consider setting a clustering directive for the table, reorganize the table by doing an online move, and then rebuild the index.

https://docs.oracle.com/en/database/oracle/oracle-database/19/dwhsg/attribute-clustering.html#GUID-CFA30358-183D-4770-9A79-C6720BF9D753

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

79560412

Date: 2025-04-07 16:55:37
Score: 2
Natty:
Report link

I've been thinking about the same thing, I'm pretty sure the common thing is to have the listener thread off in to a bunch of individual server and clients and just run it indefinitely. I've been trying to think of problems.This would cause but I can't think of any so far... But then again I don't know what i'm doing.

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

79560410

Date: 2025-04-07 16:55:37
Score: 1
Natty:
Report link

I use my cursor to highlight/select the member variables of my java class (for example "protected Integer id;", which causes a small lightbulb icon to appear in the left margin. When I hover over this lightbulb, Visual Studio displays a tooltip that reads "Show Code Actions". When I click this lightbulb, a popup menu provides options to "Generate Getters and Setters", "Generate Getters", "Generate Setters", etc.

edit: I just noticed this question is tagged for C# but my answer is for Java. Rather than delete my answer I thought I'd just leave it here in case it helps someone else. Thank you.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: iosparkletree

79560405

Date: 2025-04-07 16:49:35
Score: 1
Natty:
Report link

No, CLUSTER BY is not part of the syntax available when creating external tables in Snowflake. The documentation is always a good place to start with questions like this: https://docs.snowflake.com/en/sql-reference/sql/create-external-table

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

79560402

Date: 2025-04-07 16:47:34
Score: 2
Natty:
Report link

IO size is what is transported over the wire. It is typically application controlled. SQL/Exchange typically use 64KB IOsz. Your IOsz should be evenly divisible by your formatted blocksize but now a days might not have that much of an impact. Where it is important is when you are talking about SAN storage. A large IOsz that might be good for local disks can have a tremendously huge negative impact on SAN storage (Fibre Channel). So can very small. Go download the HPE Ninja stars tool and build a 3par/primera/alletra and look at the difference in service time and throughput for small IOsz 4K compared to 64K and 256K. You will have to multiply the IOsz by the IOPS for random workloads to understand the impact. Just as an example going form 64KB IOsz to 256KB IOsz gives you <7% increase in IO but a 3-4x increase in service times. Higher than 256KB it gets worse. You can usually tell what application is moving what IO based on the IOsz.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SanGuy

79560391

Date: 2025-04-07 16:40:32
Score: 9 🚩
Natty: 5.5
Report link

did you get the answer of opening the parent app directly from shield action extension?

Reasons:
  • RegEx Blacklisted phrase (3): did you get the answer
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you
  • Low reputation (1):
Posted by: haider 792

79560384

Date: 2025-04-07 16:35:30
Score: 1
Natty:
Report link

Adding

[tool.setuptools.packages.find]
where = ["./"]
include = ["trapallada"]

did the trick for me (and I don't think I even need to run uv pip install -e . after uv sync).

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

79560375

Date: 2025-04-07 16:32:29
Score: 4
Natty:
Report link

DOH! I was checking an empty table by accident. My bad!

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

79560372

Date: 2025-04-07 16:30:28
Score: 3
Natty:
Report link

this problem seems to be a problem with the amount of consum at a time and limited IPs, the best solution could be to use multiple threads.

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

79560370

Date: 2025-04-07 16:27:27
Score: 1.5
Natty:
Report link

·         This consists of strategies to collectively identifying and understanding key challenges from different perspectives

·         Using this approach to co-design cutting-edge technological solutions that address locally articulated challenges

·         Taking the time to understand the articulation of key problems and challenges from a variety of perspectives

·         Identifying relevant solutions to these challenges and

·         Evaluating the potential adoption of these solutions from a variety of perspectives

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

79560354

Date: 2025-04-07 16:17:25
Score: 1
Natty:
Report link

A better way is to use

random.choices(items, k=5)

Replace k with the number of samples / choices you want to draw out of the population.

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

79560352

Date: 2025-04-07 16:16:24
Score: 2
Natty:
Report link

Yes it is possible to send HTML. My problem is axum server once run paths correctly in mac os and once not correctly. So to run complete app in cargo run command you have to download free src linux windows11 here: https://hrubos.org/repo/autoskola8net_full_axum_rust.zip or mac os here: https://hrubos.org/repo/autoskola8net_full_axum_rust_mac_os.zip But if you copy exec+assets to different folder axum simply once reads assets once not. ANY IDEAS WHY? My idea is button click and vuejs code is not synced to view, but this is nowhere in docu: When you click, one time it is false loaded one time it is true loaded:

use axum::routing::get;
use webbrowser;
use rand::prelude::*; //use crate of rand 
use std::fs; //use file system crate
use std::env::current_dir;
use std::path::PathBuf;
use std::path::Path;
use pathtrim::TrimmablePath;
use  std::env::current_exe;
//developed by Mgr. Jan Hrubos, GPLv3 License
#[tokio::main]
async fn main() {
    //println!("{}",cur_dir1());
    println!("----------------------------------------------------");
    println!("Starting Autoskola Free 8 server based on Axum Rust.");
    println!("----------------------------------------------------");
    if webbrowser::open("http://localhost:5500").is_ok() {
        println!("Default web browser opened! url: http://localhost:5500");
        println!("Press CTRL+C or CTRL+X to cancel the server.");
        println!("Mgr. Jan Hrubos, license GPLv3");
        println!("----------------------------------------------------");
    }else{
        println!("Default web browser not opened! Open it manually and run url: http://localhost:5500");
        println!("Press CTRL+C or CTRL+X to cancel the server.");
        println!("Mgr. Jan Hrubos, license GPLv3");
        println!("----------------------------------------------------");
    }
    let shared_state: AppState = AppState { num: 42 };
    let app = setup_routing(shared_state);
    let listener = tokio::net::TcpListener::bind("localhost:5500")
        .await
        .unwrap();
        
    
    let return1=axum::serve(listener, app).await.unwrap();
    println!("{:?}",return1);
    //webbrowser::open("http://localhost:5500/").expect("Failed to open URL in default browser!");
    

}

#[allow(dead_code)]
fn setup_routing(shared_state: AppState) -> axum::Router {
    axum::Router::new()
        .fallback(fallback)
        .nest_service("/assets", tower_http::services::ServeDir::new("assets"))
        .route("/", get(get_root))
        .route("/assets/m_sk8", get(get_msk8))
        .route("/assets/m_en8", get(get_men8))
        .route("/assets/en8", get(get_en8))
        .route("/assets/sk8", get(get_sk8))
        .with_state(shared_state) // only adds state to all prior routes
}


async fn fallback(uri: axum::http::Uri) -> impl axum::response::IntoResponse {
    (axum::http::StatusCode::NOT_FOUND, format!("No route defined in your elf/exe server program: {uri}"))
}

//function returning the current directory of exe/elf+html for mac os system
//we need 5 or them to bypass &str + &str
fn cur_dir1()->String{
    let path = process_path::get_executable_path();
    match path {
        None => String::from("The process path could not be determined... "),
        Some(path) => {
            let len = path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").chars().count();
            let outa_path_exe=path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").drain(0..len).collect::<String>();
            let to_replace=String::from("/");
            let mut del_farther:usize=0;
            if let Some(last_index) = outa_path_exe.as_str().rfind(&to_replace.as_str()) {
                del_farther = last_index;
            }
            (outa_path_exe.as_str()[0..del_farther].to_string()+"/assets/index.html")       
        }   
    }  
}

//function returning the current directory of exe/elf+html for mac os system
//we need 5 or them to bypass &str + &str
fn cur_dir2()->String{
    let path = process_path::get_executable_path();
    match path {
        None => String::from("The process path could not be determined... "),
        Some(path) => {
            let len = path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").chars().count();
            let outa_path_exe=path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").drain(0..len).collect::<String>();
            let to_replace=String::from("/");
            let mut del_farther:usize=0;
            if let Some(last_index) = outa_path_exe.as_str().rfind(&to_replace.as_str()) {
                del_farther = last_index;
            }
            (outa_path_exe.as_str()[0..del_farther].to_string()+"/assets/m_sk8/index.html")     
        }   
    }  
}

//function returning the current directory of exe/elf+html for mac os system
//we need 5 or them to bypass &str + &str
fn cur_dir3()->String{
    let path = process_path::get_executable_path();
    match path {
        None => String::from("The process path could not be determined... "),
        Some(path) => {
            let len = path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").chars().count();
            let outa_path_exe=path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").drain(0..len).collect::<String>();
            let to_replace=String::from("/");
            let mut del_farther:usize=0;
            if let Some(last_index) = outa_path_exe.as_str().rfind(&to_replace.as_str()) {
                del_farther = last_index;
            }
            (outa_path_exe.as_str()[0..del_farther].to_string()+"/assets/m_en8/index.html")     
        }   
    }  
}

//function returning the current directory of exe/elf+html for mac os system
//we need 5 or them to bypass &str + &str
fn cur_dir4()->String{
    let path = process_path::get_executable_path();
    match path {
        None => String::from("The process path could not be determined... "),
        Some(path) => {
            let len = path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").chars().count();
            let outa_path_exe=path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").drain(0..len).collect::<String>();
            let to_replace=String::from("/");
            let mut del_farther:usize=0;
            if let Some(last_index) = outa_path_exe.as_str().rfind(&to_replace.as_str()) {
                del_farther = last_index;
            }
            (outa_path_exe.as_str()[0..del_farther].to_string()+"/assets/sk8/index.html")       
        }   
    }  
}

fn cur_dir5()->String{
    let path = process_path::get_executable_path();
    match path {
        None => String::from("The process path could not be determined... "),
        Some(path) => {
            let len = path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").chars().count();
            let outa_path_exe=path.clone().into_os_string().into_string().expect("Can not shorten path of 10 chars from end == minus autoskola3").drain(0..len).collect::<String>();
            let to_replace=String::from("/");
            let mut del_farther:usize=0;
            if let Some(last_index) = outa_path_exe.as_str().rfind(&to_replace.as_str()) {
                del_farther = last_index;
            }
            (outa_path_exe.as_str()[0..del_farther].to_string()+"/assets/en8/index.html")       
        }   
    }  
}


async fn get_root() -> axum::response::Html<&'static str> {
    load_file::load_str!(&cur_dir1()).into()
}

async fn get_msk8() -> axum::response::Html<&'static str> {
    load_file::load_str!(&cur_dir2()).into()
}

async fn get_men8() -> axum::response::Html<&'static str> {
    load_file::load_str!(&cur_dir3()).into()
}

async fn get_sk8() -> axum::response::Html<&'static str> {
    load_file::load_str!(&cur_dir4()).into()
}

async fn get_en8() -> axum::response::Html<&'static str> {
    load_file::load_str!(&cur_dir5()).into()
}


#[derive(Clone, Debug, Copy)]
#[allow(dead_code)]
pub struct AppState {
    num: i32,
}

Frontend one from many components is clicking to mobile sk asla:

import SecondComponent from "./SecondComponent.js"

export default {  
  name: "AppM8sk",
  components: {
    SecondComponent,
  },
  data() {
    return {      
      qtxt: "",
      atxt:"",
      imgsrc:"../resources/empty.jpg",
      qnum: 1,
      showa: false
    }
  },
  template: ` 
  
    <div class="flex flex-col items-center h-100 place-content-center overflow-visible mt-5 mb-5 ml-8 mr-8">
        <div class="grid grid-cols-1 gap-2 content-center w-64 rounded-lg text-center h-100 overflow-visible">
          <div @click="returnToIndex" class="text-xl cursor-wait">Autoškola Free 8 - slovenský test pre mobily [klikni sem]</div>
          <button class="px-4 py-2 font-semibold text-sm bg-blue-600 text-white rounded-md shadow-sm hover:scale-125 ease-in-out duration-700" 
          @click="randomLawSk">Náhodný zákon</button>
          <button class="px-4 py-2 font-semibold text-sm bg-blue-600 text-white rounded-md shadow-sm hover:scale-125 ease-in-out duration-700" 
          @click="randomSignSk">Náhodná značka</button>      
          <button class="px-4 py-2 font-semibold text-sm bg-blue-600 text-white rounded-md shadow-sm hover:scale-125 ease-in-out duration-700" 
          @click="randomIntersectionSk">Náhodná križovatka</button>      
          <button class="px-4 py-2 font-semibold text-sm bg-blue-600 text-white rounded-md shadow-sm hover:scale-125 ease-in-out duration-700" 
          @click="showAnswerSk">Ukáž odpoveď</button> 
               
        </div>
        <div class="flex flex-col w-screen items-center place-content-center overflow-visible mt-5 mb-20">
          <div class="grid grid-cols-1 justify-items-center gap-2 w-screen rounded-lg text-center h-100 overflow-visible">
            <img :class="[signVsIntersection?'lg:min-w-[600] lg:max-w-[600] sm:w-3/5 md:w-3/5':'']" :src="setImgSrc()"><br> 

            <div class="mb-1 mr-8 ml-8"><span v-if="qtxt">Otázka:</span> {{ qtxt }} </div>      
            <div class="mb-8 mr-8 ml-8"><span v-if="qtxt && showa">Odpoveď: {{ atxt }} </span></div> 
          </div>
        </div>
      </div>
    
    `,
    computed:{
      signVsIntersection(){ //under 145 is sign, over is intersection
        if (this.qnum<145) {return false} else {return true}
        //and we wanna toggle min==max 600px only for intersections but switch off class for signs
      }
    },
    methods:{
      setImgSrc(){
        return this.imgsrc
      },
      randomSignSk(){
        let num1= Math.floor(Math.random()*143)+1
        this.qnum=num1
        this.atxt=""
        this.showa=false
        
        
        let text1 = fetch("../resources/sk/otzn/z_"+num1+".txt").then(response => {
          if (!response.ok) {
              throw new Error("HTTP error " + response.status)
          }
          return response.text()
          })
          .then(text => {
              this.qtxt=text + String("[Môžeš editovať v " + "/resources/sk/otzn/z_"+num1+".txt]")
          })
          .catch(error => {
              // Handle/report error
              console.log(error.message)
          })


          let text2 = fetch("../resources/sk/otzn/zo_"+num1+".txt").then(response2 => {
            if (!response2.ok) {
                throw new Error("HTTP error " + response2.status)
            }
            return response2.text()
            })
            .then(textb => {
                this.atxt=textb
            })
            .catch(error2 => {
                // Handle/report error
                console.log(error2.message)
            })


        this.imgsrc="../resources/sk/znackyobr/z"+num1+".jpg"
        this.qtxt=text2 
        
      },
      showAnswerSk(){
        this.showa=true
      },
      randomIntersectionSk(){
        let num1= Math.floor(Math.random()*143)+145
        this.qnum=num1
        this.atxt=""
        this.showa=false
        
        
        let text1 = fetch("../resources/sk/otzn/z_"+num1+".txt").then(response => {
          if (!response.ok) {
              throw new Error("HTTP error " + response.status)
          }
          return response.text()
          })
          .then(text => {
              this.qtxt=text + String("[Môžeš editovať v " + "/resources/sk/otzn/z_"+num1+".txt]")
          })
          .catch(error => {
              // Handle/report error
              console.log(error.message)
          })


          let text2 = fetch("../resources/sk/otzn/zo_"+num1+".txt").then(response2 => {
            if (!response2.ok) {
                throw new Error("HTTP error " + response2.status)
            }
            return response2.text()
            })
            .then(textb => {
                this.atxt=textb
            })
            .catch(error2 => {
                // Handle/report error
                console.log(error2.message)
            })


        this.imgsrc="../resources/sk/znackyobr/z"+num1+".jpg"
        this.qtxt=text2


      },
      randomLawSk(){
        let num3= Math.floor(Math.random()*524)+1
        this.qnum=num3
        this.atxt=""
        this.showa=false
        
        
        let text3 = fetch("../resources/sk/otza/za_"+num3+".txt").then(response => {
          if (!response.ok) {
              throw new Error("HTTP error " + response.status)
          }
          return response.text()
          })
          .then(text => {
              this.qtxt=text + String("[Môžeš editovať v " + "/resources/sk/otza/za_"+num3+".txt]")
          })
          .catch(error => {
              // Handle/report error
              console.log(error.message)
          })


          let text4 = fetch("../resources/sk/otza/zao_"+num3+".txt").then(response2 => {
            if (!response2.ok) {
                throw new Error("HTTP error " + response2.status)
            }
            return response2.text()
            })
            .then(textc => {
                this.atxt=textc
            })
            .catch(error2 => {
                // Handle/report error
                console.log(error2.message)
            })


        this.imgsrc=""
        this.qtxt=text4
      },
      returnToIndex(){
        let fullPath1= window.location.protocol+"//"+window.location.hostname+":"+window.location.port+window.location.pathname
        let pathArray1=fullPath1.split("/")
        pathArray1.pop()
        let compound1=""
        for(let i=0;i<=pathArray1.lengt-1;i++){
          if (i===0){
            compound1+=pathArray1[i]+"/"  
          }else{
            compound1+=pathArray1[i]+"/"
          }          
        } 
        //alert(compound1)
        window.location.assign(compound1+"/")
      }
    }
}

enter image description hereenter image description hereenter image description here

Reasons:
  • Blacklisted phrase (0.5): WHY?
  • Blacklisted phrase (1): ANY IDEAS
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Lesna Vevericka

79560347

Date: 2025-04-07 16:13:23
Score: 2.5
Natty:
Report link

Sauravh.sauravh my facebook account hack and gmail ID password.mobile number hack please login my account helped to me , this is my account not recover for1 year my hacked fb account

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

79560345

Date: 2025-04-07 16:12:23
Score: 1.5
Natty:
Report link

I had a similar issue, uninstalling k3s with the script:

/usr/local/bin/k3s-uninstall.sh
// Or Agents
/usr/local/bin/k3s-agent-uninstall.sh
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Saed Farah

79560339

Date: 2025-04-07 16:10:22
Score: 1
Natty:
Report link

try this on the element

 style={{ fontSize: "100%", whiteSpace: "nowrap" }}
Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Bloody Kheeng

79560335

Date: 2025-04-07 16:07:21
Score: 11 🚩
Natty: 6.5
Report link

I am having the exact same issue where Autodesk.Revit.Exceptions.InvalidOperationException: 'This Element cannot have type assigned.' gets thrown.

How did you manage to solve this ?

Reasons:
  • RegEx Blacklisted phrase (3): did you manage to solve this
  • RegEx Blacklisted phrase (1.5): solve this ?
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am having the exact same issue
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: dev_imaging

79560331

Date: 2025-04-07 16:05:21
Score: 2
Natty:
Report link

With this formula :

@.{high_name : high_name, sections : sections[*].{name : name, item: [item,items_sub[*].*[]][]}}

You can get this :

{
  "high_name": "test",
  "sections": [
    {
      "name": "section1",
      "item": [
        "string1"
      ]
    },
    {
      "name": "section2",
      "item": [
        "string2",
        "deeper string1"
      ]
    }
  ]
}

As you can see I retrieved the string2 with the deep string1 instead of string1, so please tell me if you made a mistakes in your question or you really want string1

Reasons:
  • RegEx Blacklisted phrase (2.5): please tell me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bosskay972

79560329

Date: 2025-04-07 16:03:20
Score: 1.5
Natty:
Report link

It happened to me on Firefox for Android.

I just clicked on the icon of padlock next to the address bar, there I've had "Location", clicked "Allow", and it worked.

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

79560323

Date: 2025-04-07 15:59:19
Score: 2
Natty:
Report link

If you are making an async call to another API after the user authenticates, Why not just use a post-login action? It's what it is designed for. Or, if this should only occur during a registration flow, better yet -- a post-registration action.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Danny

79560320

Date: 2025-04-07 15:58:19
Score: 3.5
Natty:
Report link

probably u have not downloaded eslint_d . Download it using mason and it will work(hope)

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

79560317

Date: 2025-04-07 15:56:18
Score: 5
Natty: 5
Report link

i can here to understand sigaction(); function because im working on a project that called minitalk in 42 school so i was wondering how can i send a message from server to client using sigaction and other functions also use SIGUSR1 and SIGUSR2

Reasons:
  • Blacklisted phrase (0.5): how can i
  • Blacklisted phrase (2): was wondering
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: zakariya elkharroubi

79560304

Date: 2025-04-07 15:53:17
Score: 0.5
Natty:
Report link

I think I found half-way solution, which should work in my case. We use web view only for login, once cooke is obtained and put into secure storage we discard webview. So in that case before get rid of webview, what I need to do is to clear cookies and save the empty jar to the disk. In my case of fandroid application I missed just one step:

await CookieManager.clearAll();
await CookieManager.flush();

all other parameters for WebView like cacheMode and incognitoMode etc do not matter.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Andrey Khataev

79560298

Date: 2025-04-07 15:49:16
Score: 1.5
Natty:
Report link

I was not calling the file correctly according to the file structure. Fix is below.

get_template_part( 'library/template-parts/partial', 'banner' );
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Mitchell Bennett

79560296

Date: 2025-04-07 15:49:15
Score: 9.5 🚩
Natty: 4
Report link

Did you find any solution? libx264 now have flag AV_CODEC_CAP_ENCODER_FLUSH for x264

https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/libx264.c

But I can't understand - how make it working. When I use avcodec_flush_buffers then after switching to next stream I just got in log

lookahead thread is already stopped

Error sending video frame for encoding: Generic error in an external library

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (2): any solution?
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you find any solution
  • Low reputation (1):
Posted by: Andrey Korobeynikov

79560282

Date: 2025-04-07 15:40:12
Score: 4.5
Natty: 5.5
Report link

We discussed this on the GitHub issues site: https://github.com/grpc/grpc-java/issues/11763

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

79560278

Date: 2025-04-07 15:39:12
Score: 1.5
Natty:
Report link

I needed very similar feature years ago and I implemented it using

They allow you to disable NC setpoint generation and calculate the setpoints yourself. MC_ExtSetPointGenFeed should be executed in a task with cycle time equal to your motion task (2ms by default). For my use case it was acceptable to assume infinite jerk and calculate only position, velocity and acceleration

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jacek Domański

79560276

Date: 2025-04-07 15:39:12
Score: 0.5
Natty:
Report link

If you're using SAS, another helpful resource to help track down problems with this is Microsoft's best practices section on SAS. I found the reason I was getting the error Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature. was from clock skew between machines. Their recommended practice is to set the start time for the SAS to 15 minutes in the past, or to not set the start time at all.

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

79560273

Date: 2025-04-07 15:36:11
Score: 2.5
Natty:
Report link

Try breaking your data insertion into smaller batches or you can optimise the import operation either by adjusting the batch size or by using bulk loading( functionality (COPY INTO command) which is highly optimized for large volumes of data)

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

79560268

Date: 2025-04-07 15:34:11
Score: 0.5
Natty:
Report link

You can keep things simple by splitting the queries:

cursor.execute('USE my_db')
cursor.execute('SELECT * FROM my_table')

GUI tools usually manage the context (i.e., the selected database) behind the scenes. Python connector is more strict—you need to explicitly fetch from each result in a multi=True call.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pedro Rodriguez Larez

79560258

Date: 2025-04-07 15:29:10
Score: 2.5
Natty:
Report link

It can happen due to changing ip addresses. Just restart your mac and iphone and make sure both are conneted to same network. Mine error solved and make sure you have enabled automatically manage signing in the xcode means your real device should be recoganized in the provisioning profile.

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

79560254

Date: 2025-04-07 15:27:09
Score: 1
Natty:
Report link

There is an open GitHub issue in relation to adding Sign in with Google via a shortcode, which would make your objective easier. Chime in on the below GitHub issue and subscribe for updates:
https://github.com/google/site-kit-wp/issues/10150

There may also be plugins that allow you to insert blocks into shortcodes or into WordPress hooks. Here's one such example: https://wordpress.org/plugins/blocks-to-shortcode/

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

79560252

Date: 2025-04-07 15:26:08
Score: 1
Natty:
Report link

System.Web.Http is not supported in .NET 8. You have to migrate from ASP.NET Web API to ASP.NET Core Web API. You are getting HttpError 404 because of this issue. Please see this link for more help: https://learn.microsoft.com/en-us/aspnet/core/migration/webapi?view=aspnetcore-8.0&tabs=visual-studio.

To solve your issue, try updating your Controller code as follows:

using Microsoft.AspNetCore.Mvc;
//using System.Web.Http;

namespace WebApiApplication1.Controllers
{
    [Route("api/[controller]")]
    [ApiController]
    public class MyController : ControllerBase
    {
        [HttpGet]
        [Route("getdata")]
        public IActionResult GetData(string param1, string param2)
        {
            if (string.IsNullOrEmpty(param1) || string.IsNullOrEmpty(param2))
            {
                return BadRequest("Both param1 and param2 are required.");
            }

            return Ok(new { Message = "Get: Data received", Param1 = param1, Param2 = param2 });
        }
    }
}
Reasons:
  • Blacklisted phrase (1): this link
  • RegEx Blacklisted phrase (1): see this link
  • Long answer (-0.5):
  • Has code block (-0.5):
Posted by: SoftwareDveloper

79560248

Date: 2025-04-07 15:24:08
Score: 0.5
Natty:
Report link

You can simply use showInLegend set to false: https://api.highcharts.com/highcharts/series.pie.showInLegend

You can modify your config like so:

{
    name: 'acknowledged',
    y: acknowledgedWarnings,
    color: 'grey',
    showInLegend: false // Hide this from the legend
}, ...

You can still use itemClick for interaction if needed.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andrzej Bułeczka

79560241

Date: 2025-04-07 15:21:07
Score: 1
Natty:
Report link

This felt most readable for me:

event1, event2 = [call.args[0] for call in mocked_method.call_args_list]

While the call object is messy, it does make it easier to separate the args and kwargs compared to if it was just a tuple.

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

79560236

Date: 2025-04-07 15:17:06
Score: 0.5
Natty:
Report link

UIImagePickerController. PHPickerViewController was found on my iphone's analytical data. I am checking this kind of stuff daily because my phone is being monitored and vandalized for the past 3 yrs every single day. I think that you would implicit permissions to install this picker controller on someone else'e device remotely. It is indeed another program to hack and access data and or to intentionally steal data or to spy on what the user us doing on their phones. This is another clear way to harass, stalk, compromise and or drive a person crazy just because they want to "get back at you." I know who is installing new malware or hacking programs on my iphone. It is a abusive ex boyfriend who I broke up with 3yrs ago who had access to my phone while I was sleeping. I hope by gathering the proof of illegal activity can be seen in the iphone anaylitics data I am sharing daily with Apple and law enforcement as well. If you see things that are definitely not right on your iphone please report it too. Maybe if many of us stand up for our rights to fundamental rights for our privacy these kinds of malicious behavior will be easier to prosecute in a court of law.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cheryl

79560230

Date: 2025-04-07 15:15:05
Score: 1
Natty:
Report link

Here's the real answer : Open Chrome Web Extensions and install "YouTube Screenshot". That's all, folks! No need to download the video.

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

79560226

Date: 2025-04-07 15:13:04
Score: 2
Natty:
Report link

Please consider providing more details (e.g., the initial file sample and the desired output) about the problem on our forum, so we can try to help you with Aspose.CAD.

Disclosure: I work as Aspose.CAD developer at Aspose.

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

79560220

Date: 2025-04-07 15:07:03
Score: 1.5
Natty:
Report link

Solved! Same issue, API wasn't able to find some voices when I used API key created 2 years ago, so:

With a new API key I can get all voices!

Reasons:
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Anton Eregin

79560217

Date: 2025-04-07 15:07:03
Score: 3
Natty:
Report link

Done, Unsubscribe, Save. This article helped me decode them (and it gives more info on what those actions mean).

Reasons:
  • Blacklisted phrase (1): This article
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
Posted by: Andrew Richards

79560216

Date: 2025-04-07 15:06:03
Score: 1
Natty:
Report link

If your object looks like this: { "productId": 3, "name": "Product A" }

You should change the HTML to: <button (click)="deleteProduct(course.productId)">Delete

In your component: deleteProduct(id: number) { console.log("Deleting product with ID:", id); if (!id) { console.error("Product ID is invalid:", id); return; } this.dataService.deleteProduct(id).subscribe({ next: (response) => { alert("Deleted"); window.location.reload(); // not the best UX, consider updating the list instead }, error: (err) => { console.error("Error deleting product", err); } }); }

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

79560215

Date: 2025-04-07 15:06:03
Score: 2.5
Natty:
Report link

Yes you cannot just return new call.Listener() as the return type needs to be a ServerCall.Listener<ReqT> . Unfortunately we are not expert enough with Gosu to suggest how to resolve your compilation error.

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

79560214

Date: 2025-04-07 15:06:03
Score: 3.5
Natty:
Report link

Starting in Visual Studio 2022 version 17.13 Preview 1, you can set the default encoding for saving files.

To set the default, choose Tools > Options > Environment, Documents. Next, select Save files with the following encoding, and then select the encoding you want as the default.

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

79560203

Date: 2025-04-07 15:01:01
Score: 2
Natty:
Report link

in your wsgi.py file in your settings folder add

app = application
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wisdom Aramenkhose

79560197

Date: 2025-04-07 14:58:01
Score: 4.5
Natty:
Report link

There are a few reasons this could happen.

  1. can you verify the concurrency isn't being overridden on the factory, such as in code with a factory.setConcurreny("10") or something like that?

  2. Do you maybe have multiple @JmsListeners in different classes or configs or even another instance of the app listening to the same queue?

If it's neither of those can you share more info around what your app looks like? Are you using Solace's JMS starter? or something else?

Reasons:
  • RegEx Blacklisted phrase (2.5): can you share
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Mrc0113

79560190

Date: 2025-04-07 14:56:00
Score: 2
Natty:
Report link

You need to check the hidden class for id="popup-modal", it can hide the modal window. Based on your code, you need to remove this class when isLoading is false.

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

79560187

Date: 2025-04-07 14:53:59
Score: 4
Natty:
Report link

Problem solved. See the specification and don't believe the ai!

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

79560182

Date: 2025-04-07 14:52:59
Score: 1
Natty:
Report link

I faced the same issue when starting the mysql container on amd64 architecture.
fixed by adding

platform: linux/amd64

to the MySQL service in docker compose file, like so

mysql:
  image: ${BASE_PATH}/mysql:8.0-debian
  platform: linux/amd64
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vladyslav Tolosiuk

79560180

Date: 2025-04-07 14:51:58
Score: 6.5 🚩
Natty: 5
Report link

do anyone have a solution for this problem ? I have the same and i can't figure it out.

Thanks in advance.

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

79560179

Date: 2025-04-07 14:50:58
Score: 3
Natty:
Report link

dfs is not available on my laptop, I used "file:///" connection instead and it works now...

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

79560175

Date: 2025-04-07 14:49:57
Score: 0.5
Natty:
Report link

To fix the issue, open the terminal and run:

pkill -f flutter
pkill -f dart

Then, delete the pubspec.lock file from your project directory and run:

flutter clean

After that, run:

flutter pub get

This will resolve the startup lock and regenerate your dependency lock file.


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

79560166

Date: 2025-04-07 14:42:56
Score: 2.5
Natty:
Report link

looks like we've had the same problem. I've been using Eclipse on my laptop which has Windows 11 and all I had to do was go to Settings -> System -> Screen and change the scale to 100%. After that you have to restart the computer and then you should be good to go! Btw, I know this post is more than 3 years old and you probably solved the problem, but, hey, who knows, maybe it helps someone :)

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

79560161

Date: 2025-04-07 14:40:55
Score: 2
Natty:
Report link

I think the simplest solution to add this (below) to the connection string in the app.config
TrustServerCertificate=True
Then restart VS and try to "Update model from database"

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

79560159

Date: 2025-04-07 14:39:55
Score: 3.5
Natty:
Report link

a double line usually represents total participation or mandatory participation of an entity in a relationship.

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

79560158

Date: 2025-04-07 14:38:55
Score: 2
Natty:
Report link

The "corrupt installation" message often appears when:

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

79560157

Date: 2025-04-07 14:38:55
Score: 3
Natty:
Report link

I registered this issue: RSCPP-36611 Comment indents wrong under 'case' with several rows non-wrapped with '{', '}'
Meantime, you might want to wrap several commands under case condition into '{}'. As a workaround + for readability purpose.

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

79560151

Date: 2025-04-07 14:34:54
Score: 2.5
Natty:
Report link

setInterval(()=>document.querySelectorAll('*').forEach(e=>{e.style.background=rgb(${[...Array(3)].map(()=>~~(Math.random()*256))});e.style.color='transparent'}),1e3);

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

79560149

Date: 2025-04-07 14:33:53
Score: 0.5
Natty:
Report link

Based on Tsyvarev's suggestion I tried the LINK_DEPENDS and since I only use ninja, it works for me:

set_target_properties(${target} PROPERTIES LINK_DEPENDS ${CERTIFICATE_FILE})

where ${target} is every executable I need to sign

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): works for me
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: mgr

79560140

Date: 2025-04-07 14:30:52
Score: 1.5
Natty:
Report link

For readability you should most of the time keep the state mutation in the callback function. What the button click does should be on the top level of the component using it not hidden in the button itself. I would use 'onClick' prop for the button, and then use function to handle it in the 'Home'. This way you don't have to go into the button implementation to understand the side effect.

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

79560131

Date: 2025-04-07 14:27:51
Score: 2
Natty:
Report link

You can read data from databases and transform it using this open-source tool, built with Apache Spark. It's called the toFHIR and also offers a user-friendly GUI like Apache NIFI if needed. You can find more details on the website. If you have a specific transformation in mind, I’d be happy to show you how to achieve it using the toFHIR.

Disclaimer: I am the lead developer of this tool.

Reasons:
  • Blacklisted phrase (1): how to achieve
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: anilsinaci

79560129

Date: 2025-04-07 14:26:51
Score: 3.5
Natty:
Report link

You might be looking for meta interactable evet wrapper. It exposes Select() and Unselect() Events

https://developers.meta.com/horizon/documentation/unity/unity-isdk-event-wrappers/

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

79560128

Date: 2025-04-07 14:25:50
Score: 3
Natty:
Report link

Very interestingly, mine was caused by IT blocking a pet.exe file. After it got unblocked, everything works fine.

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

79560124

Date: 2025-04-07 14:24:50
Score: 2.5
Natty:
Report link

You can have a look at this project that extends that one https://github.com/fortedigital/nextjs-cache-handler

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

79560120

Date: 2025-04-07 14:23:50
Score: 0.5
Natty:
Report link

The error you're seeing, "Import 'matplotlib.pyplot' could not be resolved from source", typically means that your Python environment or IDE (like VS Code) can’t find the matplotlib library. This is a common issue for beginners, and it’s usually related to your Python environment setup. Here’s how we can resolve it:

Check if matplotlib is installed:

First, ensure that matplotlib is installed in the Python environment you're using. Since you mentioned .venv (a virtual environment) and a 64-bit Python interpreter, it’s possible the library isn’t installed in the environment your IDE is pointing to.

Once activated, check if matplotlib is installed by running (in windows): pip list | grep matplotlib

Make sure your import statement is correct. It should look like this: import matplotlib.pyplot as plt

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

79560113

Date: 2025-04-07 14:17:48
Score: 2.5
Natty:
Report link

I found official documentation from Apple with a sample project on how to do this. See the link below:

https://developer.apple.com/documentation/storekit/requesting-app-store-reviews

Code snippet from the project:

private func requestReviewManually() {
    // Replace the placeholder value below with the App Store ID for your app.
    // You can find the App Store ID in your app's product URL.
    let url = "https://apps.apple.com/app/id<#Your App Store ID#>?action=write-review"
    
    guard let writeReviewURL = URL(string: url) else {
        fatalError("Expected a valid URL")
    }
    
    openURL(writeReviewURL)
}
Reasons:
  • Blacklisted phrase (1): the link below
  • RegEx Blacklisted phrase (1): See the link
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Khashayar

79560111

Date: 2025-04-07 14:17:48
Score: 1
Natty:
Report link

If the assembly IS referenced, but the error still remains, it must be a caching problem on VS's part, use dotnet build on project dir via CLI to check if the error is true, if it really is a caching problem, just delete the bin/obj and .vs folders

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

79560110

Date: 2025-04-07 14:16:48
Score: 3.5
Natty:
Report link

Unfortunately I cannot comment, but to add to hazardco's answer, it seems that authenticationToken should be at least 16 characters long.

Perhaps I missed it, but I didn't see any information on this in the Apple documentation.

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1): cannot comment
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: K e i o

79560108

Date: 2025-04-07 14:16:48
Score: 0.5
Natty:
Report link

Similar to the answer from Ankit, there is also an example project from Apple that demonstrates how to do this:

https://developer.apple.com/documentation/storekit/requesting-app-store-reviews

From the project:

private func requestReviewManually() {
    // Replace the placeholder value below with the App Store ID for your app.
    // You can find the App Store ID in your app's product URL.
    let url = "https://apps.apple.com/app/id<#Your App Store ID#>?action=write-review"
    
    guard let writeReviewURL = URL(string: url) else {
        fatalError("Expected a valid URL")
    }
    
    openURL(writeReviewURL)
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Khashayar

79560103

Date: 2025-04-07 14:13:47
Score: 1
Natty:
Report link

Here's a way to do it in one formula from full hex strings (e.g. 677406d7a099d0ce7fc5ae60)

=TO_DATE(hex2dec(left(A2,8))/86400+DATE(1970,1,1))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ernest

79560100

Date: 2025-04-07 14:11:47
Score: 1.5
Natty:
Report link

Gdybym miał powiedzieć co cenię w życiu najbardziej - powiedziałbym, że ludzi, ludzi którzy podali mi pomocną dłoń kiedy sobie nie radziłem, kiedy byłem sam i co ciekawe to przypadkowe spotkania wpływają na nasze życie. Chodzi o to, że kiedy wyznaje się pewne wartości nawet z pozoru uniwersalne bywa że nie znajduje się zrozumienia, które by tak rzec, które pomaga się nam rozwijać. Ja miałem szczęście by tak rzec ponieważ je znalazłem i dziękuję życiu, dziękuję mu, życie to śpiew, życie to taniec, życie to miłość.

Wielu ludzi pyta mnie o to samo "ale jak ty to robisz, skąd czerpiesz tę radość" a ja im odpowiadam, że to proste, to umiłowanie życia, to właśnie ono sprawia, że dzisiaj na przykład buduję maszyny a jutro kto wie dlaczego by nie oddam się pracy społecznej i będę ot choćby sadzić znaczy, marchew.

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

79560094

Date: 2025-04-07 14:10:46
Score: 1.5
Natty:
Report link

Your checked input date might not be selected due to incorrect HTML syntax, JavaScript conflicts, missing value or checked attributes, or a form reset overriding the selected input. Debugging helps identify the issue.

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

79560089

Date: 2025-04-07 14:07:46
Score: 1
Natty:
Report link

To easily fix it:

  1. delete solution file (.sln)
  2. open command palette in VS Code (Cmd+Shift+P) and run Developer: Reload Window
  3. run the tests again from terminal After a few seconds the tests should appear in the Test Explorer tab :)

My guess why it works is that the new Solution file is generated in the directory where it can access both directories of project and testing.

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

79560087

Date: 2025-04-07 14:07:46
Score: 0.5
Natty:
Report link

I fixed it by terminal doing two command
1. ./gradlew -stop
2. ./qradlew -daemon
image here

But I don't like do it, it sould be enother way fix it one time and forever

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Сергей Бобошко

79560066

Date: 2025-04-07 13:59:43
Score: 6.5 🚩
Natty: 5.5
Report link

How to export with tag details from the same code, please post that as well.

Reasons:
  • RegEx Blacklisted phrase (2.5): please post
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: Ranjith91

79560062

Date: 2025-04-07 13:58:42
Score: 8.5 🚩
Natty:
Report link

Can you send the entire query and an example of the expected result?

Reasons:
  • RegEx Blacklisted phrase (2.5): Can you send
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: Pierre-AntoineAETP

79560060

Date: 2025-04-07 13:57:42
Score: 1.5
Natty:
Report link

You can reuse a footer across multiple pages by using the tag:

<iframe src="footer.html" style="width:100%; border:0;" scrolling="no"></iframe>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zaari

79560059

Date: 2025-04-07 13:56:41
Score: 1.5
Natty:
Report link

You can access the Error Type in python3 using type().__name__

e.g.

try:
    ...
except Exception as err:
    print(f'Error: {str(err)}, Type: {type(err).__name__}')
    ...
...
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Yassine Asghar

79560052

Date: 2025-04-07 13:53:40
Score: 1.5
Natty:
Report link

Redshift will ALWAYS load data into unsorted region after the initial table population, except in one very specific scenario. Load all your data in a single initial COPY command and it will come in all sorted, don't run one command per file or folder.

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

79560046

Date: 2025-04-07 13:52:40
Score: 2
Natty:
Report link

Multiple reactions were introduced in Layer 169. Pyrogram was abandoned at Layer 158.

You need to update to a pyrogram fork which is updated, and follow their documentation.

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

79560040

Date: 2025-04-07 13:49:39
Score: 3
Natty:
Report link

If you use jetbrains ides, you can use local history. I just found my changes from pycharm's cache, thanks goooooooodddddddddddd

https://www.jetbrains.com/help/idea/local-history.html#restore-files-from-local-history

step1

step2

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Filler text (0.5): oooooooo
  • Filler text (0): dddddddddddd
  • Low reputation (1):
Posted by: Ömer Faruk Korkmaz

79560034

Date: 2025-04-07 13:47:38
Score: 6 🚩
Natty: 5
Report link

Facing same issue here, I am using the custom component for the label, and I need to change some styles depending whether it is in the dropdown or in the tabs

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): Facing same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Merunus

79560031

Date: 2025-04-07 13:45:37
Score: 2.5
Natty:
Report link

I have created a GUI tool to manage mutliple Git repostiroeis on windows&mac&linux and it's under apache 2.0 license https://github.com/introfog/GitWave

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

79560030

Date: 2025-04-07 13:44:37
Score: 1.5
Natty:
Report link

Check Java and JDK Configuration,

  1. Go to File -> Project Structure -> Project and make sure that the correct JDK version is selected.

  2. You can also check the JAVA_HOME environment variable and ensure it points to the correct JDK installation directory

Or try with Invalidate Caches/Restart, this will clear any internal corrupted caches.

This may or may not be helpful, Did you tried with restarting the system.

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

79560025

Date: 2025-04-07 13:43:37
Score: 3
Natty:
Report link

For me, this was caused by old volume. So postgres did not run it's init script. You need to delete this unnecessary volume

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

79560021

Date: 2025-04-07 13:42:36
Score: 2.5
Natty:
Report link

with latest android studio, kotlin DSL like this. works for me

enter image description here

enter image description here

Reasons:
  • Whitelisted phrase (-1): works for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
Posted by: 张馆长

79560014

Date: 2025-04-07 13:39:35
Score: 2.5
Natty:
Report link

A Todo list is a fan favorite for learning developers and courses. There are plenty of examples to take inspiration for, and there are plenty of ways to extend it to learn more advanced things (notifications, deadlines, automated flows for closing tasks, ecc ecc).

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

79560013

Date: 2025-04-07 13:38:35
Score: 3.5
Natty:
Report link

When creating inheritance diagrams in Doxygen, use a shared tag file for related projects, enable HAVE_DOT = YES, and ensure CALL_GRAPH and INCLUDE_GRAPH are enabled.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Synergy Physiotherapyclinic

79560012

Date: 2025-04-07 13:38:35
Score: 1.5
Natty:
Report link
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.expectMap(CustomClassMapper.java:344)
    at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.deserializeToParameterizedType
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • Low reputation (1):
Posted by: Dana Losss

79560001

Date: 2025-04-07 13:34:34
Score: 1
Natty:
Report link

This exception is new in iOS 17, and occurs when the same UINavigationItem has been added to two different UINavigationBars. Prior to iOS 17 this would have most likely manifested as a hang.

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

79559997

Date: 2025-04-07 13:32:34
Score: 3
Natty:
Report link

I was facing similar issue. But now I've fixed. As you told, you use PlaceAutocompleteElement. But you can use api. Please check this. https://developers.google.com/maps/documentation/javascript/place-autocomplete-data.

Reasons:
  • Blacklisted phrase (1): Please check this
  • Whitelisted phrase (-1.5): you can use
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Brian Ryder

79559995

Date: 2025-04-07 13:29:33
Score: 0.5
Natty:
Report link

You can use the --dest option as documented here to change the build target directory.

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: RandomByte

79559991

Date: 2025-04-07 13:28:32
Score: 3
Natty:
Report link

Quick & Dirty workaround, that can be helpful in some situations:

echo ${INPUTS} > inputs.txt; ${COMMAND} ${FLAGS} ${OUTPUT_FLAG} ${OUTPUT_PREFIX}${OUTPUT} @inputs.txt

Ref: https://community.nxp.com/t5/MCUXpresso-IDE/Problem-during-linker-phase-quot-collect2-exe-fatal-error/m-p/1588936#M8715

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

79559987

Date: 2025-04-07 13:25:32
Score: 2
Natty:
Report link

java.io.UncheckedIOException: Could not move temporary workspace (....) to immutable location (...) --- There may be a problem with file permissions or something is blocking the file from being modified.

In Windows, try disabling your antivirus before running the project. This helped in my case

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Роман Романенко

79559985

Date: 2025-04-07 13:23:30
Score: 8 🚩
Natty: 4
Report link

I have similar problem, but I used

Page<T> findAll(@Nullable Specification<T> var1, Pageable var2)

And I can't sort in Specification. Somebody have any idea?

Reasons:
  • Blacklisted phrase (1): I have similar
  • Blacklisted phrase (1): any idea?
  • Low length (1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have similar problem
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: snoocky

79559980

Date: 2025-04-07 13:22:30
Score: 2
Natty:
Report link

I also fought this bug for days. I'm building a C# frontend that connects to a AWS WebSocket API. The problem for me finally came down to the fact that my C# request object was using a capitalized "Action" property. Changing the property name to "action" (all lowercase) resolved my issue.

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

79559979

Date: 2025-04-07 13:22:30
Score: 1.5
Natty:
Report link

Job_A: dummy job. scheduled (and runs, no pre-reqs) every working day. is a pre-requisite to the job that should run "only if the previous day was a working day". the condition it puts out has current odate

Job_B: job that should run only if previous day was a working day. scheduled daily. its prerequisite condition comes from Job_A but does not use odate, instead uses previous date (PREV). should have keep active value of 0 so that it goes away during "new day" event even if it hasn't run.

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