Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Activity for jimbobmcgee‭

Type On... Excerpt Status Date
Comment Post #285740 My initial thought is to mark ingress connections for the edge interface, and use that mark to target a particular routing table. Something like (but probably not exactly): ``` nft add table netdev t1 nft add chain netdev t1 cInFilt { type filter hook ingress device eth0 priority 0\; } nft a...
(more)
11 months ago
Comment Post #288453 Yes, that is true. I did make the assumption that the *.part* file would be specifically be a *sibling* to the files that were being deleted, which is not guaranteed by the question.
(more)
11 months ago
Edit Post #288480 Initial revision 11 months ago
Answer A: Dynamic IP & lease loss - "callback" mechanism?
It depends on a couple of factors: 1. Whether the interface is directly connected to the internet, or is behind a separate firewall which is forwarding on to your machine 2. What you are using to assign your dynamic address If your machine is behind a separate firewall, that device is one wh...
(more)
11 months ago
Comment Post #288318 It depends if you can afford for the game's network traffic to actually reach home. For capturing outbound network traffic, I'd use `tshark` or `tcpdump` to write a pcap file, then examine it in Wireshark. I'd be looking for the differences between network traffic when I was sandboxed vs when I...
(more)
11 months ago
Edit Post #288453 Post edited:
11 months ago
Edit Post #288453 Post edited:
11 months ago
Edit Post #288453 Post edited:
11 months ago
Edit Post #288453 Post edited:
11 months ago
Edit Post #288453 Initial revision 11 months ago
Answer A: Recursively remove files with the same name as the ones that end in `.part`
I might be inclined to try... ``` find . -type f -name '.part' -exec sh -c ' [ -f "${1%.part}" ] && rm -i -- "${1%.part}"; for f in "${1%.part}".; do [ -f "$f" ] && rm -i -- "$f"; done ' -- {} \; ``` (newlines for readability; can be elided if one-liner means something to yo...
(more)
11 months ago
Comment Post #288318 Am going to *guess* the resulting sandbox reports that network is *connected*, but has no route to whatever DRM/anti-cheat/always-online endpoint is embedded in the Windows game. As opposed to network reporting *disconnected* if you turn off your networking with `nmcli`. I'd guess the logic for...
(more)
11 months ago
Edit Post #288446 Post edited:
11 months ago
Edit Post #288446 Initial revision 11 months ago
Answer A: How to automatically change to the first matching directory using fuzzy search and cd?
Possibly `-f "$dir"` not `-q "$dir"`. According to man: > -q, --query=STR > > Start the finder with the given query > > ... > > -f, --filter=STR > > Filter mode. Do not start interactive finder. When used with --no-sort, > fzf becomes a fuzzy-version of grep. If `--select-1` doesn't t...
(more)
11 months ago
Comment Post #288329 > I have no idea what the syntax for fish If memory serves, `(command | psub)` but, ironically, I think it just creates temp files under the hood...
(more)
11 months ago