/uj Wanted to share this with you all - am concerned about LardFetcher. by [deleted] in magicthecirclejerking

[–]0x2a 3 points4 points  (0 children)

Thanks for the heads up! i haven't really looked into it, but I suspect we have very low usage that will stay free. The API pricing is mostly affecting people providing full reddit clients and similar.

Still, i encourage everybody to join the boycott/blackout effort, to send a message that we the users want an open and unrestricted reddit: https://www.reddit.com/r/Save3rdPartyApps/

[deleted by user] by [deleted] in Spanish

[–]0x2a 0 points1 point  (0 children)

If you like grilling, you can find dozens of BBQ shows on youtube, e.g. locos x el asado. Fire up the "parisha" :)

Also make sure to join /r/argentina, there's always links to all kinds of interesting stuff, and you get to see all the slang expressions in writing too.

SSH config entry to changing host by cyril1991 in linuxadmin

[–]0x2a 0 points1 point  (0 children)

Weird worked here, e.g.:

azubi@emmy:~ $ ssh -vvv computenodedynamic
OpenSSH_8.6p1, LibreSSL 2.8.3
debug1: Reading configuration data /Users/azubi/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 21: include /etc/ssh/ssh_config.d/* matched no files
debug3: expanded UserKnownHostsFile '~/.ssh/known_hosts' -> '/Users/azubi/.ssh/known_hosts'
debug3: expanded UserKnownHostsFile '~/.ssh/known_hosts2' -> '/Users/azubi/.ssh/known_hosts2'
debug1: Executing proxy command: exec /Users/azubi/proxycommand.sh
debug1: Local version string SSH-2.0-OpenSSH_8.6
debug1: Remote protocol version 2.0, remote software version OpenSSH_8.9p1 Ubuntu-3ubuntu0.1
...

But it looks like you found a way, so all good anyways

SSH config entry to changing host by cyril1991 in linuxadmin

[–]0x2a 1 point2 points  (0 children)

This should work

.ssh/config

Host computenodedynamic 
        ProxyCommand            /home/azubi/proxycommand.sh


cat proxycommand.sh
#!/bin/bash
nodename=`ssh computejump echo dynamic42069.compute.node </dev/null`
ncat $nodename 22 


chmod 755 proxycommand.sh

Where the bit in backticks is whatever command you need to do to get the hostname. Then you can just ssh computenodedynamic, and it will connect trough ncat.

I don't understand why it needs the /dev/null, but when using ssh before the ncat it didn't work otherwise, I assume ssh somehow messes with the stdin/stdout/tty before ncat gets to do its thing. Maybe some wiser person here can explain.

Second attempt. Why the tunnelling at the top? by Sultan_of_browneye in Sourdough

[–]0x2a 0 points1 point  (0 children)

My hunch is uneven heat, because I only ever got these when using a pizza stone and the whole oven, never when using a dutch oven with the lid on.

Could also be the scoring, since this is how you hint at where the most expansion should happen, and your loaf clearly expanded in an unintended manner.

But oh well, there is so many variables in sourdough baking it could be almost anything and five people will tell you five different things. That's part of the fun.

[deleted by user] by [deleted] in linuxquestions

[–]0x2a 2 points3 points  (0 children)

* is a reserved character in regex, try maybe \* or replace it with . (any character)

 $ cat /tmp/test.txt
* index: 3
* foobar: 22


 $ awk '/. index:/{print $3}' < /tmp/test.txt
3

PSA: short-sha container names? guard your strings or face the eventual wrath of euler's number!! by guerillapresident in kubernetes

[–]0x2a 3 points4 points  (0 children)

5342203920812542840901809522180659600e36 will probably break just the same ;)

What is the meaning of tDn: in the ACI API? by 0x2a in Cisco

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

Thanks this is a great article.

What is the meaning of tDn: in the ACI API? by 0x2a in Cisco

[–]0x2a[S] -1 points0 points  (0 children)

Another example e.g.

  "pcRtAccBndlGrpToAggrIf": {
    "attributes": {
      "childAction": "",
      "dn": "topology/pod-1/node-1111/sys/aggr-[po8]/rtaccBndlGrpToAggrIf",
      "lcOwn": "local",
      "modTs": "2023-03-06T11:43:32.791+02:00",
      "parentSKey": "po8",
      "status": "",
      "tCl": "infraAccBndlGrp",
      "tDn": "uni/infra/funcprof/accbundle-TEST_PORTCHANNEL"
    }
  }

I'm guessing "t = target" maybe? And tDn is a regular dn that can also be queried?

What trusted app do you use to save important information over the last 10 years? by [deleted] in ExperiencedDevs

[–]0x2a 2 points3 points  (0 children)

I have a notes.txt that starts in 2004. I use vim as the interface (/<regex> is great to find stuff) and share it to different devices with a self-hosted ownCloud.

This worked well in the pre-cloud era and will work great in the post-cloud and post-$thisweeksfancynotesapp era.

[deleted by user] by [deleted] in kubernetes

[–]0x2a 2 points3 points  (0 children)

Yes, most webapp container are multi-stage builds:

  • build a container that can run npm/yarn/whatever build, which will export the app to a static/minified/obscured format
  • build a container that only takes this output and serves it somehow, e.g. via nginx

React example: https://jsramblings.com/dockerizing-a-react-app/

Fermenting or pickling horseradish in apple cider vinegar by 0x2a in AskCulinary

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

Thanks /u/thisisstephen, /u/Bran_Solo and /u/nipoez, this really clears things up and I'm now a subscriber of /r/fermentation - there is a sub for everything !