M.Jerger

Results 22 issues of M.Jerger

Hi, I try to decrypt a git-crypted file outside of git. We use symmetric en-/decryption with different keys. .gitattributes contains: ``` *dev_test.properties.enc filter=git-crypt-dev_test diff=git-crypt-dev_test *dev_live.properties.enc filter=git-crypt-dev_live diff=git-crypt-dev_live *prod_live.properties.enc filter=git-crypt-prod_live diff=git-crypt-prod_live...

Hi, I've no inspected my linux installation allready, but is there a chance to adopt this patch for linux version alos? BR, jerger

Hi, if I work on two projects in parallel (each of them is a separated git repo) - how can I switch atomatigit from one git repo to the other?...

Read about npm-dependencies (https://sambleckley.com/writing/npm.html) and realized, that request is deprecated ... We should review our dependencies & find out, whether we can replace the outdated ones.

For twitter links we've already nitter replacements in place, youtube et al would be possible also :-) https://www.kuketz-blog.de/datenschutzfreundliche-web-frontends-fuer-youtube-twitter-instagram-reddit-und-co/

I like using mastodon, but I can not force all my network to switch from twitter. So I'm searching for a way to keep the twitter part informed (and invite...

enhancement

I plan to add resources to my project. How should I configure pybuilder? I can not find a tutorial / example for handling resources ....

question

If one build step breaks it should stop the build execution. At least for shell this is broken: Machfile.edn ``` {breaking {update! #$ ["exit" 1]} non-breaking {update! #$ ["exit" 0]}...

As build is intentionally impure, order of dependencies matters. Mach resolves dependencies reverse - that's unexpected - at least to me. Real-World-Example can be found here: https://github.com/DomainDrivenArchitecture/dda-cloudspec/blob/003a1919815cac7d1fff0e4db11b0d9d0b298b56/Machfile.edn#L102

I tried to make my machfile more modular with import (see https://github.com/DomainDrivenArchitecture/dda-cloudspec/blob/master/Machfile_not_working_modulatization.edn) but on execution I get warnings ``` WARNING: Use of undeclared Var cljs.user/build-dir WARNING: Use of undeclared Var...