Skip to main content
Filter by
Sorted by
Tagged with
3 votes
1 answer
121 views

I have an application with the following requirements: Before a predefined event (in my application) occurs, I need to update and insert rows in different tables. After the event, certain rows in ...
MagicJP's user avatar
  • 85
0 votes
0 answers
78 views

Sorry for the long message, but I was wondering if you could give me some advice. What I want to achieve is to handle tree-structured data in the nim language using tasks with the nim-taskpool package....
vert2air's user avatar
-3 votes
1 answer
130 views

This is a follow up question to my previous one, Make a deep copy of an object inside a ConcurrentDictionary in C#. I want to clone my Patient object so that the object PatientCovariates is the same ...
KGB91's user avatar
  • 707
0 votes
1 answer
172 views

I have these related fields qty_request = fields.Float('Qty Request') product_qty = fields.Float('Product Quantity', digits = 'Product Unit of Measure', ...
Osama bin Mirza's user avatar
2 votes
3 answers
1k views

Visual Studio is suggesting for me to make methods on a struct readonly, what does that mean? I thought only fields could be readonly, not methods. public struct MyStruct { ... // I have ...
Sander's user avatar
  • 535
1 vote
1 answer
1k views

In odoo 17, I want the formview to only view and not edit based on the value of the field order_payment_state = done. Instead of adding the readonly attribute to each field, I want to write a python ...
Cris Tuan's user avatar
1 vote
0 answers
83 views

I need to have a read only Word macro File that makes the user save it first as what ever they choose the name to be as long as it doesn't override the read only file. It also doesn't matter if the ...
Matthew Redhouse's user avatar
0 votes
1 answer
53 views

I'm having a problem with my code where there's a select that's 'disabled' and it doesn't send the data to the next page. I've tried using hidden input but it didn't work. This is the part where the ...
Gabs Oli's user avatar
1 vote
0 answers
19 views

I have an interesting issue I'm trying to solve, some background so you don't just say "why not do it this way instead?!". There's a PC running a commercial closed source scoreboard program, ...
Bleve's user avatar
  • 11
0 votes
0 answers
65 views

Say you managed to make the session read-only by applying [SessionState(System.Web.SessionState.SessionStateBehavior.ReadOnly)] on a controller. When modifying the session within that controller, it ...
Virus721's user avatar
  • 8,413
0 votes
2 answers
365 views

<?php declare(strict_types=1); class Example { public readonly array $setOne; public readonly array $setTwo; public function __construct() { // Populate $setOne and $...
Tyler V.'s user avatar
  • 2,581
1 vote
1 answer
159 views

I have an SQLite binary dump of around 10mb. The dumped database contains some catalogue data, which I need to be able to read from really fast from a Ruby application (sub-millisecond). Therefore I ...
Niels Kristian's user avatar
1 vote
0 answers
232 views

We are using for our frontend application store Zunstand with Immer for immutability and Zustand lens for separating slices. I noticed that, due to an error runtime in Javascript console, we used a ...
Francesco Meli's user avatar
1 vote
1 answer
251 views

I really enjoy how in Java, we can declare variables "final" within methods to indicate that they will not change after initialization. In C#, you cannot do this same thing-- the only ...
Luke Siegel's user avatar
0 votes
1 answer
90 views

Consider the following code: import ballerina/io; type User record {| string name; string email; |}; const USER = { name: "John Doe", email: "[email protected]" }...
Sasindu Dilshara's user avatar
1 vote
1 answer
192 views

We have our primary database in Europe, and it is replicated using azure to a closer region as a readonly instance. This costs us quite a lot every month and we are only using it to he able to fail ...
Zapnologica's user avatar
  • 22.6k
-1 votes
1 answer
1k views

I want to create writable rootfs using Yocto. I tried with meta-readonly-rootfs-overlay layer and just included it into stm32mp135f yocto build process but seems like it is not making a writable ...
stack-shailu's user avatar
1 vote
2 answers
227 views

I have a django 4 form having some widgets for the user to select some values: from django import forms from .app.model import MyModel from bootstrap_datepicker_plus.widgets import DatePickerInput ...
swiss_knight's user avatar
  • 8,381
0 votes
1 answer
109 views

I need to write a Google script with the doGet() function that edits more cells of a Google sheet. This script is called via https URL. All the members of my Organization Will be able to call this URL ...
Geltrude's user avatar
  • 1,095
1 vote
0 answers
79 views

In WooCommerce, I would like to allow the country and the city selection only to new customers that haven't placed an order yet. But for customers that have already placed an order once and have yet a ...
Mr Emad Alavi IT's user avatar
1 vote
1 answer
85 views

A file is considered "read-only" if reading the file is allowed but writing to the file is not permitted. What if the file has the following permissions (r and x) root r-x file_name.xls Is ...
x89's user avatar
  • 3,522
2 votes
2 answers
148 views

I'm using Unity version 2023.1.6. I have a custom collection that inherits from Collection<T>. If I instantiate a collection and then try to use the .Add() method I receive the following error : ...
Fraspo's user avatar
  • 29
-1 votes
1 answer
830 views

I am trying to generate a docx document from a template using docx-templates in nextjs. Can anybody tell how to make the generated document readonly? Or make parts of the document read-only? I tried ...
Prachi Sharma's user avatar
1 vote
0 answers
194 views

I have just came across this super simple example where typescript would not guard enough and would let readonly object been passed where mutable is expected. Following compiles in TS 5.1.6 (and all ...
Yoz's user avatar
  • 1,040
0 votes
0 answers
165 views

I want to run a project makefile (rule all) using the clion tool, but when I use it, it seems to work, but it gives me a read-only output. I've done the same thing on Ubuntu, and it works, but with ...
Nino Faust's user avatar

1
2 3 4 5
33