vaalla

joined 1 year ago
[–] vaalla@discuss.tchncs.de 4 points 9 months ago

Already exist, it's called hdr and almost all modern camera supports them. But they take more time.

[–] vaalla@discuss.tchncs.de 6 points 9 months ago

10 Seniors in east europe.

[–] vaalla@discuss.tchncs.de 1 points 11 months ago

I manage to break 2 usb conectors in 1 year.

[–] vaalla@discuss.tchncs.de 2 points 1 year ago

Israel os a Nazi state /s

It's so simple when you can just say bullshit.

[–] vaalla@discuss.tchncs.de 3 points 1 year ago

There have been concerts in war zones before(like 'Screeam for me, Sarajevo'). And a small dance festival near an almost 'peaceful' border does not sound that bad.

[–] vaalla@discuss.tchncs.de 1 points 1 year ago

Install mitmproxy and set the proxy settings to mitm. Maybe it will work.

[–] vaalla@discuss.tchncs.de 3 points 1 year ago (1 children)

There is one thing to not help a movie that you don't agree with, and another to ban it. Apocalypse Now was made without the support of us military band was a success.
For comparision in the Genius of Carpathian Mountains's country (Romania), everything had to pass censor's.

https://www.military.com/off-duty/7-crazy-facts-about-vietnam-war-film-apocalypse-now.html

[–] vaalla@discuss.tchncs.de 4 points 1 year ago

I mostly write rust now, but this workflow was finetuned over years. Use 2 terminals each on a diferent monitor, one runs neovim and the other is for building/running. If the project is a bit more complex, I will run it in a docker container( maybe mount the /etc/shadow and frieds so all artefacts are created using the same user as in the outside) . Developed a bunch of tools over the years to optimise this:

  • a 'package manager' in bash so I have a folder for each project/context. One for work, one common, one for the server stuff like this. All are in PATH.
  • parterm - remote control for the terminal so i can start a build from neovim in a different terminal.
  • 'ndock' - at work I use a bunch of branches, this script will set up a few envs and then start a docker in a folder coresponding to that branch.

At my old job had to work on a remote vm so I setup sshfs for a while, but was slow and just moved all my tools there.

I have a pattern where i put all my projects in ~/dev/<branch> and all info related to a task in ~/dev//bugs/<issue_nr>. This is usefull because I can have scripts the work similar for different projects with small changes. For example to run my binary with the config for a issue i just do

ndock <branch>
nr <issue nr>

This will start docker or connect to an existing one for that branch if available, compile the code, run my binary with the config present in the bug folder. In the last few month started running it with rr to be sure i can debug any random issue.