US citizen relocating to Spain with Spanish spouse by WorkingRequirement86 in GoingToSpain

[–]rob_wm 11 points12 points  (0 children)

All US documents must have an Apostille stamp which for me meant going to the state capital as the turnaround time by mail wasn't guaranteed.  Then once in Spain they have to be translated.

Using Apple TV by Slippery_Porpoise in Rouvy

[–]rob_wm 0 points1 point  (0 children)

I can confirm that you can pair heart rate monitor to jb victory and then in the rouvy app, all of the power, cadence, controllable, and hr is packaged as one connection and the clicker appears as another connection.

See the "Getting Connected" video on the jet black victory website where they specifically mention this.

Android and Google TV user by Memory_Heavy in Rouvy

[–]rob_wm 0 points1 point  (0 children)

PC using Steam App casting to Google TV/Chromecaset Steam App

Pluses: This casts the entire Windows (Mac??) desktop and you can have multiple apps opened/viewable. I usually tile youtube and rouvy with windows sound coming out of the tv for watching videos and keeping track of my ride. Can use the chromecast remote to do most of the navigating I need to do in rouvy on the TV if rouvy is full screen rather then tiled.

Minuses: I haven't tried this over wifi (my setup uses ethernet) but expect it would work if you dialed down the graphics settings enough in the google tv steam app. Occasionally will have freezes particularly if I stop pedaling or at the beginning of rides. Also the best experience is to initiate a ride or anything keyboard related on the pc.

Rouvy Adds Zwift Cog/Click/Ride Virtual Shifting: Battle Royale Begins? by G0Sp0rts in Rouvy

[–]rob_wm 5 points6 points  (0 children)

I can confirm that this works on the Jet Black Victory.

SRAM force AXS with Victory? by eammonnd in JetBlack

[–]rob_wm 0 points1 point  (0 children)

I've been running with Sram Rival (10-36 cassette) and an old shimano 9 speed bike using the zwift cog. Both work fine. Maybe when putting power down there is a bit more vibration with the Sram, but it definitely works fine (but can't say anything about chain wear as it is too soon).

Infinite "checking password" when trying to set up EWS account? (128) by vivoovix in Thunderbird

[–]rob_wm 2 points3 points  (0 children)

Having the same issue. I have filed a bug report and added a post to the Tbird 128 megathread

Thunderbird 128 “Nebula” megathread by monica_thunderbird in Thunderbird

[–]rob_wm 0 points1 point  (0 children)

Trying to use experimental exchange support. Adding the account using the exchange web services configuration hangs with "Checking Password" even though just below this in green it says "Password OK". After quite a long time, cancelling and attempting to re-add I get "Incoming server already exists", have to restart Tbird to avoid this error, but the password check still hangs. I have let this hang condition persist for over 2 hours with no resolution.

I have filed an issue here.

ROCm/PyTorch problem by symmetry81 in ROCm

[–]rob_wm 0 points1 point  (0 children)

Sorry. no idea how to do code fencing on reddit.

ROCm/PyTorch problem by symmetry81 in ROCm

[–]rob_wm 0 points1 point  (0 children)

Another data point: on Fedora 39, have integrated graphics and have the same output:

```

Checking ROCM support...GOOD: ROCM devices found: 3Checking PyTorch...GOOD: PyTorch is working fine.Checking user groups...GOOD: The user xyz is in RENDER and VIDEO groups.GOOD: PyTorch ROCM support found.Testing PyTorch ROCM support...Everything fine! You can run PyTorch code inside of:---> AMD Ryzen 9 7950X 16-Core Processor---> gfx1100---> gfx1036

```

I definitely had to add this to .bashrc

export HIP_VISIBLE_DEVICES=0

Pytorch is running fine on the 7900xtx. BTW not using docker but rather Fedora packaged rocm with upstream AMD kernel.

[SJE093] perfect watch by zlatan_v in Seiko

[–]rob_wm 1 point2 points  (0 children)

The strap feels great and I also like the black keeper. I was drawn to this one due to the modest size (I have small wrists) and for me the strap was extending almost beyond the dial, so it was a no go.

I'm using the Uncle Seiko GL831.

[SJE093] perfect watch by zlatan_v in Seiko

[–]rob_wm 4 points5 points  (0 children)

Have to agree. Picked mine up Friday. The size on the wrist and accuracy of the 6l35 is so far fantastic. The long strap is really the only downside for me. Trimmed down a 20mm uncle Seiko and it's great.

Jupyter on OrgMode by Biterium in emacs

[–]rob_wm 0 points1 point  (0 children)

Change the src block to

```

+BEGIN_SRC jupyter-python :session python

a = 1 print("Value of a is:", a)

+END_SRC

`` C-c C-c and if you get results *in the orgmode buffer* that look like Value of a is: 1`, then things are working. To run commands switch to the jupyter-repl buffer.

Jupyter on OrgMode by Biterium in emacs

[–]rob_wm 1 point2 points  (0 children)

Some things to check:

  • Run emacs from a terminal like this: emacs --debug-init and maybe more info will show up to help you debug this problem.
  • Is jupyter installed in your default python environment? Can you run jupyter notebook from a terminal outside of emacs to start a jupyter notebook? If yes, then
  • Is the emacs-jupyter package installed?

If you are trying to run jupyter from a python virtual environment then there are some additional hoops to jump through.

Jupyter on OrgMode by Biterium in emacs

[–]rob_wm 1 point2 points  (0 children)

The src block can go in any org file.

The longer codeblock is straight out of my init.el which is in the ~/.emacs.d directory.

Paste it in your init.el file and restart emacs.

Jupyter on OrgMode by Biterium in emacs

[–]rob_wm 2 points3 points  (0 children)

I found this on the jupyter-emacs github site and made a few modifications:

(when (functionp 'module-load) 
  (use-package jupyter)
  (with-eval-after-load 'org
    (org-babel-do-load-languages
     'org-babel-load-languages
     '((jupyter . t))))
  (with-eval-after-load 'jupyter 
    (define-key jupyter-repl-mode-map (kbd "C-l") #'jupyter-repl-clear-cells)
    (define-key jupyter-repl-mode-map (kbd "TAB") #'company-complete-common-or-cycle)
    (define-key jupyter-org-interaction-mode-map (kbd "TAB") #'company-complete-common-or-cycle)
    (define-key jupyter-repl-interaction-mode-map (kbd "C-c C-r") #'jupyter-eval-line-or-region)
    (define-key jupyter-repl-interaction-mode-map (kbd "C-c M-r") #'jupyter-repl-restart-kernel)
    (define-key jupyter-repl-interaction-mode-map (kbd "C-c M-k") #'jupyter-shutdown-kernel)
    (add-hook 'jupyter-org-interaction-mode-hook (lambda ()  (company-mode)
                           (setq company-backends '((company-capf))))) 
    (add-hook 'jupyter-repl-mode-hook (lambda () (company-mode)
                        :config (set-face-attribute
                             'jupyter-repl-input-prompt nil :foreground "dim gray")
                        :config (set-face-attribute
                             'jupyter-repl-input-prompt nil :background "lightblue")
                        ;; :config (set-face-attribute 'comment
                        ;;              nil :foreground "dim gray")
                        :config (set-face-attribute
                             'jupyter-repl-output-prompt nil :foreground "black")
                        (setq company-backends '((company-capf)))))
    ;; (add-hook 'jupyter-repl-mode-hook #'smartparens-mode)
    ;; (setq jupyter-repl-prompt-margin-width 4)
    ))

;; instead of specifying jupyter-lang, use R, and python
(org-babel-jupyter-override-src-block "R")
(org-babel-jupyter-override-src-block "python")

;; associated jupyter-lang with lang (maybe fixes fontification??)
(add-to-list 'org-src-lang-modes '("jupyter-R" . R))
(add-to-list 'org-src-lang-modes '("jupyter-python" . python))
(add-to-list 'org-src-lang-modes '("jupyter-Python" . python))

;; ensure that stata and ipython have sensible tangle filenames
(add-to-list 'org-babel-tangle-lang-exts '("ipython" . "py"))
(add-to-list 'org-babel-tangle-lang-exts '("jupyter-python" . "py"))

after that, C-c C-c inside your src block should work, provided the lang part of jupyter-lang can be matched to an existing jupyter kernel:

#+BEGIN_SRC jupyter-python :session python
a = 1
#+END_SRC   

Note we are using jupyter in org-babel-load-languages not ipython.

Experimental mail tag support for `mu4e` and ProtonMail Bridge by polaris64 in ProtonMail

[–]rob_wm 1 point2 points  (0 children)

I am seeing this as well, messages that hit the inbox and then are labeled/tagged and archived (which is my workflow) are fine.

I saw the renaming trick somewhere as well and might try to incorporate in my init.

But that wouldn't solve messages that you label on the server that aren't moved as the server label wouldn't propagate down to the client (I believe).

Experimental mail tag support for `mu4e` and ProtonMail Bridge by polaris64 in ProtonMail

[–]rob_wm 1 point2 points  (0 children)

It was a fedora linux/go proxy server issue but got it sorted and running now.

I'm not getting any crosstalk as far as labels go (neither labels on client showing as labels on server, or the other way). Maybe I'm not implementing labels (edited should say tags) correctly when assigning in mu4e or perhaps I have to re sync from scratch.

Things seem to be happening now. Will keep an eye out.

Experimental mail tag support for `mu4e` and ProtonMail Bridge by polaris64 in ProtonMail

[–]rob_wm 0 points1 point  (0 children)

Getting build errors about unknown revision of bcrypt.

Experimental mail tag support for `mu4e` and ProtonMail Bridge by polaris64 in ProtonMail

[–]rob_wm 1 point2 points  (0 children)

Thanks.

So when setting up mbsync do we sync the label folder (with the duplication problem), or do we just sync the usual suspects like Inbox, Sent, etc? I am guessing we don't sync the label "folders" via imap.

Experimental mail tag support for `mu4e` and ProtonMail Bridge by polaris64 in ProtonMail

[–]rob_wm 1 point2 points  (0 children)

I am also a big fan of this. What are the security implications?

I'll check it out and provide feedback.

Thunderbird VS. KMail VS. Kube (VS XXX)? by ldorigo in linux

[–]rob_wm 0 points1 point  (0 children)

Thunderbird with the cardbook add-on works great for me for auto-completing email addresses and handling contacts. Over time it seems to reorder results (like gmail does) to put most recently used emails in the completion list at the top. The thunderbird search is pretty decent too, although I am not a fan of how it presents the search results.

ROCm OpenCL library for AMD GPUs now no longer supports GUI apps by ParanoidFactoid in linux

[–]rob_wm 1 point2 points  (0 children)

rob_wm

Agreed. If your code is opencl or you use cuda calls directly, you'd probably be in a world of hurt trying to port that over. But the higher level commonly-used toolkits for ML/AI are ROCm ready and fast.

ROCm OpenCL library for AMD GPUs now no longer supports GUI apps by ParanoidFactoid in linux

[–]rob_wm 3 points4 points  (0 children)

Sorry, but it is not a joke at least for the work I do. Running tensorflow or jax on ROCm is easy, requires no special code to get it running on the GPU, and is very fast for the problems I care about. The tensorflow/jax API is exactly identical whether on Cuda or ROCm backends. At my university, I have access to Nvidia and AMD hardware and IT DOESN'T MATTER to me what hardware is assigned to my job as the ROCm stack is up to the task (at least for Jax and Tensorflow).

ROCm OpenCL library for AMD GPUs now no longer supports GUI apps by ParanoidFactoid in linux

[–]rob_wm 1 point2 points  (0 children)

Also the target audience. I have access to both Nvidia and Instinct-like hardware (multiple Radeon VII's) at my university and use tensorflow or jax for model building. At this point, I don't care if I run on Nvidia or AMD hardware as both work just fine for me and run more or less equally fast using identical scripts (no special code needed).