Posts by marty@fosstodon.org
(DIR) Post #A0UqWdBVeZH2ET77Ca by marty@fosstodon.org
2020-10-24T07:24:32Z
0 likes, 0 repeats
@smt @mike There are three aliases I could never do without in my daily workflow:`alias cl=clear``alias gp=git push``alias gpa=git pushall` (with pushall defined in the git config to push to all connected remotes at once)I really believe in the power of 2-letter abbreviations for the most used commands - it saves a ton of typing headaches and wasted brain cycles over the long run,honeslty. 😄
(DIR) Post #A8RKsyemWFLn17pvF2 by marty@fosstodon.org
2021-06-19T09:50:45Z
0 likes, 0 repeats
@EdS I've been using `curl cht.sh/command` for tar, find and the likes for ages but never knew how extensive its functionality was, even covering programming languages. Neat!
(DIR) Post #A8SNWI6eXB4NhOht6e by marty@fosstodon.org
2021-06-19T21:44:20Z
0 likes, 0 repeats
@fluffy @Mehrad I really like my little shaarli instance. It was easy to set up through docker (not sure how it fares manually) and it's set and forget with tags and little descriptions allowing you to find stuff later. Finally, I set it up so I can add bookmarks both from my android (shaarlier) and through qutebrowser with a quick shortcut. If you script a little you can also integrate it with e.g. your browser search or a quick search window on your desktop, very versatile!
(DIR) Post #AAsiUURIFrocxlghRA by marty@fosstodon.org
2021-08-31T08:49:26Z
0 likes, 0 repeats
@fossil @werwolf @shitpisscum @twann @garow I must say from the outside I'm a little sad about how this conversation went. You came in with 'citation needed', were given a citation; moved goalposts to 'that's not how I use it', were shown that it *is* how you use it; moved goalposts to 'they're big enough that I trust them inherently' and are now discussing js shenanigans instead.It really feels like the privacy paradox condensed into one conversation.https://blog.thenewoil.xyz/the-privacy-paradox@thenewoil
(DIR) Post #ALIG4aQdM78CRZYSv2 by marty@fosstodon.org
2022-07-08T20:18:18Z
1 likes, 0 repeats
@duponin @fabiscafe I simply have an alias in my global git config which takes care of this for me, should work for multiple remotes with the same name as well: `pushall = "!git remote | xargs -I R git push R"`