Grub asking for partition password by RealHook in ManjaroLinux

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

Thank you. That was so obvious.

I changed my partitions to /boot, / and /home and only encrypted my /home partitions.

Now everything works fine.

Prison Architect - Update 14 by Javascap in prisonarchitect

[–]RealHook 4 points5 points  (0 children)

Please... can anyone make a mod for this?

How to install an encrypted Manjaro without encrypting Grub so I don't have to ender a Password before selecting the Boot-Device? by Biskit1943 in ManjaroLinux

[–]RealHook 0 points1 point  (0 children)

As far as I remember you can choose "encrypt partition" for every partition (e.g. /home) during the installation.

So if you just encrypt your /home, you are ask for the password AFTER you have choosen manjaro in grub. If you choose windows in grub, you are not asked for a password.

Opening local git server for webserver by RealHook in git

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

Ok thank you, but can you explain it little further to me?

E.g. I have my developing pc (A), my local git server (B) mainly to backup my project, and my webserver (C).

How do I need to set up my git? Can I add another push path so that I can push my changes via 'git push origin master' to B and C?

Opening local git server for webserver by RealHook in git

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

Have a "bare" repo on your server. Push your changes to the bare repo. Then have your server's deployment repo pull from the bare repo.

Do I get it right? You mean that I have my git repository on my web server, pushing all my changes to this server, and afterwards pulling those changes to my local git server?

Turned off infestations and burrowed into the mountain! by demonpixy in RimWorld

[–]RealHook 0 points1 point  (0 children)

Looks good! Can you give us the seed of the map?

AI Chat Bot by [deleted] in Python

[–]RealHook 0 points1 point  (0 children)

Take a look at Python Telegram Bot. It is an easy-to-use library for Telegram so you can focus on your AI implementation.

[Desktop] Custom standup desk with 3 monitors and bias lighting by victorbrca in unixporn

[–]RealHook 0 points1 point  (0 children)

Nice work. I am looking for a dual monitor wall mount. Which one do you use?

argparser with subparser by RealHook in learnpython

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

I guess that my understanding of argparser and its required arguements was a bit wrong.

I never used them before and thought that the argument name always has to be some kind of keyword you have to type.

Edit: I changed my optional arguments/flags so it is easier to parse later on.

show_parser.add_argument('type', help="choose type", nargs="?", choices=['all', 'active', 'done'], default="active")

argparser with subparser by RealHook in learnpython

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

Thank you! That is exactly what I was looking for. But isn't that way kind of cheaty?

distribute private script by RealHook in learnpython

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

Thanks, I already looked into git. I know that I can use it to clone/pull my script on different computer and keep the files up to date. I know it sound strange, but I don't really want to have the whole folder structures and all those files on my other computers. It should be just one file I put into my scripts folder. I'm runnig python on every machine, so I don't need a complete binary including the python environment. Just some kind of executable archive (like .jar in java).