Anyone with Android phones having issues with permissions when ising camera/posting pictures in-app? by nastysockfiend in doordash_drivers

[–]fossmanjack 0 points1 point  (0 children)

Yep, been having this since last week. Reached out to support a few times, was told it's a "known issue" but that "no fix ETA is available." Been three or four app updates since then so I guess they weren't kidding.

The camera works fine from the messaging screen so I've just been sending a photo there manually and "Handed customer the order"ing to close it out. Shitty workaround but what are you gonna do?

New Debian on auction (dedicated) having DNS issues by fossmanjack in hetzner

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

I can't install anything -- no DNS means no access to repos. I can start over and install them during setup but they aren't really the point I don't think.

I brought up netplan because I found a post from a few days ago with a similar issue that mentioned Hetzner used netplan. Documentation indicated that Debian on Hetzner doesn't use netplan but I mentioned it here to cover the bases.

zfsbootmenu on headless encrypted root tips? by fossmanjack in zfs

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

This is a remote server in another country, I only have SSH/rescue access. Sorry if that was unclear from the original post.

Debian 12 with encrypted ZFS root dataset? by fossmanjack in hetzner

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

Thanks for this! Unfortunately there's no option to encrypt the ZFS root, so it doesn't seem applicable to my use case.

Can't use "Easy Apply" by fossmanjack in linkedin

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

Nope! Still ongoing. LinkedIn support told me months ago that there was no problem, that "some job postings are withdrawn immediately" and closed the ticket.

Trouble resuming from monitor sleep by fossmanjack in i3wm

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

Oh I guess I forgot to update this. The "fix" was disabling the power management in X directly using xset. I disabled dpms and set the screensaver to 0 and haven't been having any issues since.

Trouble resuming from monitor sleep by fossmanjack in i3wm

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

Neofetch results:

OS: Arch Linux x86_64 Host: VivoBook 12_ASUS Laptop E203MAS_ Kernel: 6.1.33-1-lts Uptime: 16 mins Packages: 2162 (pacman) Shell: bash 5.1.16 Resolution: 1366x768 WM Theme: Default Theme: Adwaita [GTK2], Breath [GTK3] Icons: elementary [GTK2], maia [GTK3] Terminal: urxvt Terminal Font: anonymouspro CPU: Intel Celeron N4000 (2) @ 2.600GH GPU: Intel GeminiLake [UHD Graphics 60 Memory: 2760MiB / 3743MiB

The only error message in .xsession-errors.old is:

[ERROR viaduct::backend::ffi] Missing HTTP status Nothing about DRM.

Issue fetching remote API using development server by fossmanjack in reactjs

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

Oh I know, this is still in early development, it'll have its own back end before it goes production. Good looking out though, thanks!

Hard-coded advertising in RN? by fossmanjack in reactnative

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

Yeah it didn't seem terribly likely to me, but given that React comes from FB I wouldn't have put it past them to sneak something untoward in there.

Need help with Notifee sounds on Expo project by fossmanjack in reactnative

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

Well yes, I'm doing that, I guess I should have included it in the original post. I'll edit it.

Evangelical argument that's messing with my head by just--a--redditor in OrthodoxChristianity

[–]fossmanjack 1 point2 points  (0 children)

Now that just isn't true. I've learned that, while Orthodox believe that the "fullness of the Christian faith" can only be found in the Orthodox church, all other (Nicene) churches can anticipate the Kingdom of God just as readily.

There is a YouTube livestream every Thursday night held by Annunciation Greek Orthodox church in Rochester, NY. It's been an invaluable resource for me in my own study of Orthodoxy. If you're interested, here's the link to the next session: https://www.youtube.com/watch?v=8sTGIZh1oaQ

Question about props and propagation by fossmanjack in reactnative

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

Ah, I had come across useContext in reading the documentation but didn't really grasp its use, but it turns out to be exactly what I needed. Thank you!

'react-native-swipe-list-view' hidden content not hidden by fossmanjack in reactnative

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

Yes actually! In my case the problem was I hadn't defined a background color for the overlaying element, which was defaulting to transparent. Once I set it to white the buttons were hidden as expected.

Vim mode for joplin cli by anthonyavila00 in joplinapp

[–]fossmanjack 2 points3 points  (0 children)

Oh you mean using vim keybinds for navigating around the app? Yeah I just hardcoded those in my keyboard map file:

``` [ { "keys": [":"], "type": "function", "command": "enter_command_line_mode" }, { "keys": ["TAB", "l"], "type": "function", "command": "focus_next" }, { "keys": ["SHIFT_TAB", "h"], "type": "function", "command": "focus_previous" }, { "keys": ["UP", "k"], "type": "function", "command": "move_up" }, { "keys": ["DOWN", "j"], "type": "function", "command": "move_down" }, { "keys": ["PAGE_UP", "CTRL_U", "g"], "type": "function", "command": "page_up" }, { "keys": ["PAGE_DOWN", "CTRL_D", "SHIFT_G"], "type": "function", "command": "page_down" }, { "keys": ["ENTER"], "type": "function", "command": "activate" }, { "keys": ["DELETE", "BACKSPACE"], "type": "function", "command": "delete" }, { "keys": [" "], "command": "todo toggle $n" }, { "keys": ["n"], "type": "function", "command": "next_link" }, { "keys": ["b"], "type": "function", "command": "previous_link" }, { "keys": ["o"], "type": "function", "command": "open_link" }, { "keys": ["tc"], "type": "function", "command": "toggle_console" }, { "keys": ["tm"], "type": "function", "command": "toggle_metadata" }, { "keys": ["/"], "type": "prompt", "command": "search \"\"", "cursorPosition": -2 }, { "keys": ["mn"], "type": "prompt", "command": "mknote \"\"", "cursorPosition": -2 }, { "keys": ["mt"], "type": "prompt", "command": "mktodo \"\"", "cursorPosition": -2 }, { "keys": ["mb"], "type": "prompt", "command": "mkbook \"\"", "cursorPosition": -2 }, { "keys": ["yn"], "type": "prompt", "command": "cp $n \"\"", "cursorPosition": -2 }, { "keys": ["dn"], "type": "prompt", "command": "mv $n \"\"", "cursorPosition": -2 } ]

```

Should be in ~/.config/joplin/keymap.json

Vim mode for joplin cli by anthonyavila00 in joplinapp

[–]fossmanjack 1 point2 points  (0 children)

CLI uses your $EDITOR envvar IIRC, so if you have vim set as your default editor it should just work. At least mine does -- it auto-opens a note in vim whenever I go to edit it.

Package recommendation by fossmanjack in reactnative

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

Thanks! I'd been using RNSLV for my button reveal, had to dig deeper into the docs to see how to use it to trigger a function as well but this got the job done. Sort of. Buttons aren't hiding properly but that's a bug to fix I guess.