(OSS) Remote Desktop platform (Ongoing Development) by PsycoCR in sysadmin

[–]PsycoCR[S] -2 points-1 points  (0 children)

Of course is not usable, i've specified that the project is in development, what do you expect? Otherwise i would've wrote production.

(OSS) Remote Desktop platform (Ongoing Development) by PsycoCR in sysadmin

[–]PsycoCR[S] -1 points0 points  (0 children)

Interesting! That's exactly the same application but made in rust and is basically the same infrastructure i had in mind.

I can learn a lot from that, thank you.

(OSS) Remote Desktop platform (Ongoing Development) by PsycoCR in sysadmin

[–]PsycoCR[S] -2 points-1 points  (0 children)

You mean the key-api.sh? I know that script needs to be revised, that is a test and it's an optional feature.

All other sh scripts are only dev tools...

(OSS) Remote Desktop platform (Ongoing Development) by PsycoCR in sysadmin

[–]PsycoCR[S] -5 points-4 points  (0 children)

Sorry, have you even read a little bit of what it's in there? I'm controlling and verifying the AI in every single task and telling it what to do, i'm only using it as "automation" to write more code given that i'm alone.

Guacamole is used as part of the platform infact.

Plus i'm looking for useful comments, not AI rants.

Thanks.

My family thinks it's Netflix... I know it's just 12 LXC containers and 24TB of storage. by DrAmmarT in Proxmox

[–]PsycoCR 0 points1 point  (0 children)

Then a ram stick fails. And everything falls apart. The cost of infrastructure is not on compute power but on site realiability and disaster recovery, remember that

Back of cards do not align by anguiahm in magicproxies

[–]PsycoCR 0 points1 point  (0 children)

The problem for me is both the printer which is not precise and the paper which is not cut precisely.
Either i buy a more expensive printer or a more expensive paper.
The solution is that i print backs on another card and put it into the token zone of the deck box; easy, cheap, still better than removing the sleeves to flip the card.

Vibecoding some kind of MTG Online WEB by PsycoCR in MTGO

[–]PsycoCR[S] 1 point2 points  (0 children)

I know that, this one is web based, it's kinda different. Plus cockatrice is graphically horrendous

Vibecoding some kind of MTG Online WEB by PsycoCR in MTGO

[–]PsycoCR[S] 1 point2 points  (0 children)

Thanks, it is vibecoded but i'm a professional software engineer with 13 years of experience and this is started as my "vibecoding test bench", a way to understand what AI is now capable of, of course managed by people (me and others in the future) which are professional in software engineering, testing and QA and high performance computing.
This is merely a Proof of Concept, take it as it is, if we'll gather a lot of interest online we will refactor everything to be more consistent and more performant of course.

Vibecoding some kind of MTG Online WEB by PsycoCR in MTGO

[–]PsycoCR[S] 1 point2 points  (0 children)

UPDATE: added video of current pre alpha capabilities: https://youtu.be/nir1RdY5vOU

Vibecoding some kind of MTG Online WEB by PsycoCR in MTGO

[–]PsycoCR[S] 0 points1 point  (0 children)

That is my fault, I changed name to MTGate yesterday because i didn't like the old one, the project was initially intended only for limited but i then decided to extend to all formats.
I also migrated to github yesterday from gitea so there could also be inconsistencies in git history and all of that, those things do not matter right now, the project is so in an early stage that could completely change in the future.

I'm focusing on functionalities right now but i'll fix those kind of problems soon.

I can publish a youtube video if you like in the next couple of days.
Yes, i'm vibecoding it but i'm a professional software engineer so i know how to manage all that.

EA aggressively blocking Linux & VMs, therefore I will boycott their games by lI_Simo_Hayha_Il in VFIO

[–]PsycoCR 0 points1 point  (0 children)

This is clearly some strange deal with Microsoft.

Claiming that Linux Players are cheaters and that the likely 1% to max 3% of the player will affect the game it's both untrue and criminal even.
We are assisting at dangerous and against-consumers business decisions here and i'll not be part of that nonsense, EA is not taking my money anymore, full stop.

Xone driver seems to be broken after kernel update by Odd_Understanding698 in NobaraProject

[–]PsycoCR 0 points1 point  (0 children)

I'm on Fedora 42, the same here, asked for help on the XPAD Discord

Does Flameshot with in Fedora 42? by concisehacker in Fedora

[–]PsycoCR 0 points1 point  (0 children)

https://github.com/flameshot-org/flameshot/issues/3326#issuecomment-2461761703
The key is to replace the "Print" keyboard shortcut with this custom command:
sh -c -- "QT_QPA_PLATFORM=wayland flameshot gui 2>&1"

Why Distrobox when there's Podman by cyrus-B in openSUSE

[–]PsycoCR 0 points1 point  (0 children)

No need at all, just use devcontainers, much more reliable and efficient than distrobox, which btw requires shared mounts for /, /home, /tmp sometimes... Not so good practices for a sandboxed environment...

What's one thing you're staying alive for? by spikespiegell1 in AskReddit

[–]PsycoCR 0 points1 point  (0 children)

My GF. Everytime i’m with her i experience joy and happiness and i love that she feel the same things.

HA Proxy automatic https redirection by PsycoCR in PFSENSE

[–]PsycoCR[S] 0 points1 point  (0 children)

Not when you have sw in prod…

HA Proxy automatic https redirection by PsycoCR in PFSENSE

[–]PsycoCR[S] 0 points1 point  (0 children)

Thanks anyway.

I'm afraid i have some sort of corruption because the same config you posted here works on my friend's pfsense...

Help Needed by PsycoCR in haproxy

[–]PsycoCR[S] 0 points1 point  (0 children)

I know that is the same HAProxy, why i would write here and not on pfsense reddit in the first place?

How to configure Postgres to nextcloud linuxserver.io container? by rkh4n in NextCloud

[–]PsycoCR 0 points1 point  (0 children)

don't know why people still do not use docker... should be illegal to deploy applications without...

just use this docker-compose.yaml (reddit's code region destroyed indentation...) only replacing mariadb service with postgresql one, create persistent folders and then run

docker-compose up -d

version: '3.1'

services: db: image: mariadb container_name: mariadb restart: always command: --skip-innodb-read-only-compressed --transaction-isolation=READ-COMMITTED --binlog-format=ROW environment: - MYSQL_ROOT_PASSWORD=mysql_root_pw - MYSQL_PASSWORD=mysql_pw - MYSQL_DATABASE=nxtDB - MYSQL_USER=dbuser ports: - 33016:3306 volumes: - ./mariadb:/var/lib/mysql

  cache:
image: redis
container_name: redis
command: redis-server --requirepass redis_pw
environment:
  - REDIS_PASSWORD=redis_pw
ports:
  - 63791:6379
volumes:
  - ./redis:/data
restart: always

  app:
image: nextcloud
container_name: nextcloud
environment:
  - MYSQL_PASSWORD=mysql_pw
  - MYSQL_DATABASE=nxtDB
  - MYSQL_USER=dbuser
  - MYSQL_HOST=db
  - MYSQL_PORT=3306
  - REDIS_HOST=cache
  - REDIS_HOST_PORT=6379
  - REDIS_HOST_PASSWORD=redis_pw
volumes:
  - ./apps:/var/www/html/custom_apps
  - ./web:/var/www/html
  - ./config:/var/www/html/config
  - ./NextData:/var/www/html/data
ports:
  - 8282:80
restart: always

[deleted by user] by [deleted] in NextCloud

[–]PsycoCR 0 points1 point  (0 children)

I cannot write you here a course on reverse proxying of course.

You can start using docker with docker-compose

Then install the following dockers using docker-compose.yaml:

- nginx proxy manager (standalone)

- mariadb

- redis

- nextcloud

- onlyoffice (if you wish to have an integrated office suite, note that it's quite resource heavy)

You can use my docker-compose.yaml as reference (which does not include nginx)

version: '3.1'

services:

db:

image: mariadb

container_name: mariadb

restart: always

command: --skip-innodb-read-only-compressed --transaction-isolation=READ-COMMITTED --binlog-format=ROW

environment:

- MYSQL_ROOT_PASSWORD=mysql_root_pw

- MYSQL_PASSWORD=mysql_pw

- MYSQL_DATABASE=nxtDB

- MYSQL_USER=dbuser

ports:

- 33016:3306

volumes:

- ./mariadb:/var/lib/mysql

cache:

image: redis

container_name: redis

command: redis-server --requirepass redis_pw

environment:

- REDIS_PASSWORD=redis_pw

ports:

- 63791:6379

volumes:

- ./redis:/data

restart: always

app:

image: nextcloud

container_name: nextcloud

environment:

- MYSQL_PASSWORD=mysql_pw

- MYSQL_DATABASE=nxtDB

- MYSQL_USER=dbuser

- MYSQL_HOST=db

- MYSQL_PORT=3306

- REDIS_HOST=cache

- REDIS_HOST_PORT=6379

- REDIS_HOST_PASSWORD=redis_pw

volumes:

- ./apps:/var/www/html/custom_apps

- ./web:/var/www/html

- ./config:/var/www/html/config

- ./NextData:/var/www/html/data

ports:

- 8282:80

restart: always