RealGecko

Results 33 issues of RealGecko

I've added an attachment to my file with certain content: I read it like this: ```ansible - name: Backend postgres vars ansible.builtin.include_vars: file: "{{ lookup('viczem.keepass.keepass', 'infrastructure/infisical', 'attachments', 'infisical-postgres.yml') }}" name:...

### Describe the bug When using unstyled mode `Column` with checkboxes in `DataGrid` still shows SVG checkmark when checkbox is checked. ![image](https://github.com/user-attachments/assets/0bddea34-e0be-4297-882d-33502f8439a4) App ```typescript ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( ) ``` Datatable...

Status: Discussion
Component: Unstyled

I've synced one folder from my laptop to my Mega drive which is done continuously, but I also want to do backup another folder which needs to happen periodically (once...

Creating test file ```python # test.py import os os.environ.setdefault("lala", "tralala") ``` Running with `codon` ```sh $ codon run test.py test.py:3:1-41: error: 'EnvMap' object has no attribute 'setdefault' $ codon build...

**Describe the bug** A clear and concise description of what the bug is. ** Related Components ** - [ ] protoc-gen-grpc-federation - [ ] grpc-federation-linter - [ ] grpc-federation-language-server -...

language-server

### Problem I'm on Arch Linux with Plasma 6 and noticed that after update of some package(either Mono or Plasma itself, hard to say) CKAN does not follow global scaling...

Following #652 here's the problem: f I open multiroot workspace on remote server Ruff does not work, however if I just open folder(root folder where .code-workspace is) Ruff starts working....

bug
multi-root-workspaces

### Describe the bug I've noticed that when I use `DatePicker` in model it sets full time with adjustment to timezone instead of putting just date. So if I for...

Status: Needs Triage

I have following models ```python class Family(db.Entity): _table_ = "families" id = orm.PrimaryKey(int, auto=True) persons = orm.Set("Persons") class Person(db.Entity): _table_ = "persons" id = orm.PrimaryKey(int, auto=True) family = orm.Required(Family, column="family_id")...

I need to call a stored procedure from Postgres, procedure params look like this: ```sql CREATE PROCEDURE import_metadata(IN table_name TEXT, IN headers ARRAY, IN metadata_file_path TEXT) ``` But as I...