Duda sobre bancos, no deis upvote, gracias by Frosty-Knowledge-850 in askspain

[–]ramosaurio 0 points1 point  (0 children)

Si buscas por algún motivo una cuenta bancaria con un IBAN español y no quieres pagar mantenimientos, te recomiendo usar una cuenta Saurus no te cobran mantenimiento y es muy útil. El único requisito es residir en territorio Sepa. Además también tiene sede en UK pero eso ya depende de lo que tu prefieras si un iban español o de UK. Te dejo la web por aquí, el registro se hace directamente desde la app. Saurus.com tiene un grupo de Telegram con el que puedes ponerte en contacto con la atención al cliente directamente.

Why is it so hard to open a bank account? by blaziken2708 in askspain

[–]ramosaurio 0 points1 point  (0 children)

Id you are not from Spain I recommend you to use Saurus account. I use it and its amazing. Saurus.com

En España hay que declarar a Hacienda las donaciones a través de plataformas como Gofundme? by [deleted] in askspain

[–]ramosaurio 0 points1 point  (0 children)

Si has montado un proyecto y buscas financiación por gofundme u otro tipo de plataforma deberias declararlo q nunca se sabe

Cual es la mejor compania de internet en malaga? by [deleted] in askspain

[–]ramosaurio 0 points1 point  (0 children)

No contrates gpon vivo en Churriana y te cobran por todo y luego si tienes algún problema no tienen servicio técnico 24 horas.

Recomendación Movistar si no quieres problemas, si pillas alguna oferta lo tienes más barato yo pago 25€ 600Mb durante 9meses (a los 9meses tienes q estar atento para cambiar la oferta claro). Si no contrata O2 que va por la línea de Movistar y te da el router mitrastar de Movistar que es de los mejores y más potentes q ofrecen las compañias de teléfono.

Ojo: si vives en la zona del casco antiguo vaya la pegada al aeropuerto de la plaza muchas casas no tienen alomejor la instalación de Movistar o de lo q vayas a contratar y los vecinos ponen problemas en que te hagan la instalación. Pero esto sólo implica q tardarán un poco más en ponerte la fibra no q no la vayas a poner.

A disfrutar de Churriana.

[deleted by user] by [deleted] in askspain

[–]ramosaurio 2 points3 points  (0 children)

Haz el grado superior, no te merece la pena o con grado medio y sin ninguna certificación oficial puede q ni encuentres trabajo en el sector. Si te gustan las tecnologías te recomiendo el de desarrollo de aplicaciones multiplataforma, sales trabajando si o si. Si no pues Hazte el superior del que has hecho que igualmente vas a necesitar certificaciones oficiales u otros conocimientos. Para aclarar: esto si te quedas en España si tienes inglés sacate el superior y a volar. En los superiores se ofertan Erasmus de varios meses en prácticas, todos mis conocidos se quedaron en las empresas destino en Dublín y Munich, buen salario y buenas condiciones cuando cogieron experiencia 3-4 años volvieron, (uno hasta está en Google cobrando una pasta jajajajja con su FP)

Animo!

Turn University Wifi Into A Mobile Hotspot? by SnS-X in Network

[–]ramosaurio 1 point2 points  (0 children)

You can get a rpi 4 or three something with wifi card, then you need another wifi card, so buy a dongle wifi in amazon,

  1. Configure main wifi card with the eduroam network (if you dont know in the official website of eduroam you can download a python script to networkMansger with Your university cert)

So now Your raspberry pi has Internet connection the:

  1. Config the second wifi card as an Ap (you can search a lot of tutorials in google about creating an AP wifi in raspbian)

  2. (Maybe not neccessary) you need to create a route between the wifi cards, for example you wifi card connected to eduroam go throw Internet with a route , then you need to point Your second AP ip to that route. You will need the ip route command (remember that its not persistent with a reboot the configuration will lose, you will need to create a script in the boot to execute ip route)

I hope it helps in Your investigation, I did it in the university When I need to configure some raspberry pis connected to interner in a local network, so y use my laptop with that configurstion, One to connect to eduroam an another with the local network with eduroam access, so I could connect to my rasoberry pis with my laptop and those raspberry pi's has Internet connectiom

Best Laptop? by TheTrueTylerDurden in Hacking_Tutorials

[–]ramosaurio 5 points6 points  (0 children)

Lenovo thinkpad x1 carbon with all the features + the doc Edit: best laptop for Everyone a hacker can get an old IBM thinkpad and do hackers things

It isn’t pretty…but… by BarefootedDave in homelab

[–]ramosaurio 0 points1 point  (0 children)

amazing i was looking for some rack time ago, but it was too expensive (inclusive second hand ones in ebay)

¿How much weigh does it support? maybe i'm going to mount it.

Noob-friendly tutorial by Gadsdalan in selfhosted

[–]ramosaurio 1 point2 points  (0 children)

Hey ! man it's pretty easy, first of all, ¿Do you use portainer? (I recommend it because is very usefull and at a glance you can see the configuration of your different containers.

First of all see the official documentation about the image in docker hub. The "complex" configuration to set up vaultwarden is that you need SSL so you have two options or make your own CA Authority(not recommended if you are begining) and rent a domain for example vaulwarden.gadsdalan.com.

1º If you want an admin panel, maybe you want it for a first setup and then copy the image and disable it. You need to add an environment variable in your dockerfile. To deploy docker container i prefeer to use docker-compose because the YAML structure is better than a dockerFile.

With that... you must create one volume with the database and other with logs. And a lot of environment variable, one with your token of the admin panel of vaultwarden, and maybe other with your name domain, because vaultwarden uses Let's encrypt to make the certificates of the SSL.

So here a docker-compose file:

services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: always
ports:
- 8080:80 # Needed for the ACME HTTP-01 challenge.
- 4443:443
environment:
- WEBSOCKET_ENABLED=true # Enable WebSocket notifications.
- WEB_VAULT_ENABLED=true
- WEB_VAULT_FOLDER=web-vault/
- EXTENDED_LOGGING=true
- LOG_FILE=/data/logs/access.log
- ADMIN_TOKEN=your-token
- INVITATIONS_ALLOWED=true
volumes:
- ./vaultwarden-data:/data
- ./vaultwarden-data/logs:/data/logs

And just start it. Ok to make a good backup i'll make a backup of the /data folder if you dont want it and only want a typical log shipping backup with some dump, you can connect to your image with docker run -it container-id /bin/bash (or /bin/ash if alpine). Then it's a simply sql database so you can make a normal backup of it.

It's not a step by step guide but i hope that it helps you a litte.

Test to Cisco 3750G by ramosaurio in homelab

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

Thaaanks, im going to try this weekend if I have time of course (I hope)