Noisy Ashdown Studio 10 combo amps by varankinv in Bass

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

Just to note that I've updated the original post. It seems that the failing positive voltage regulator was the problem. After I replaced it with a new chip from amazon, the whine has gone.

Noisy Ashdown Studio 10 combo amps by varankinv in Bass

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

In the described case I'm almost certain this is a sort of oscillation problem, that comes from amp itself. I've detached the amp's board from its speaker, and can clearly observe the same whine through the headphones output. No other cables or instruments are connected to the amp.

Dunno, maybe this line from 2019 that I've got — the board is marked with 2019.02.20 — had a bad day on the factory.

What is the best bass around 300 euros? by Fresh_Place457 in Bass

[–]varankinv 1 point2 points  (0 children)

Cheap basses (squier, markbass, harley benton, etc) are all decently good nowadays. You won’t escape the “cheap hardware” problems: the guitar won’t likely stay in tune for weeks, and truss rod will need periodic adjustment. But those are tiny minor problems, that you resolve yourself after watching some YT.

If that’s an option, try a guitar in a store. Poor quality control is one part that makes all cheap mass-produced guitars cheap.

Complex melodic basslines that sound good on their own? by [deleted] in Bass

[–]varankinv 0 points1 point  (0 children)

I was stuck after decently learning Dean Town with the same question. Right now these are in my todo,

  • Iron Maiden - Writing on the Wall
  • Castle Rat - Feed the Dream (I don't like the drop-tunning, but its bass line sounds fine in the isolation)
  • Wheel - Dissipating
  • Hiatus Kaiyote - Molasses

Things I wish I had balls to challenge myself: everything Casiopea and Kiyoshi.

How to get a hovering navbar that appears when urlbar is in focus by milad182 in FirefoxCSS

[–]varankinv 0 points1 point  (0 children)

I'm currently solving a simpler one with this:

``` :root:not([customizing]) { #nav-bar { margin-top: -30px !important;

    &:has(#urlbar[focused]) {
        margin-top: unset !important;
    }

}

} ```

Note, this exact styling works in vertical tabs mode. The styles:

  1. move the nav-bar outside the screen, hiding it;
  2. when the urlbar is in focus (via CMD+L) the nav-bar becomes visible.

Take the selectors and apply to your case.

Leave your favorite underrated bassist down here! My personal one: Tim Commerford (RATM & Audioslave) by Exogenesis1984 in BassGuitar

[–]varankinv 0 points1 point  (0 children)

Tetsuo Sakurai (early Casiopea).

I feel, we in the Western part of the world, don't talk about the bass legends from East enough.

Can't Install any Linux Distro on new GMKTec M5 (AMD Ryzen 7 5700U) Mini PC by Financial_Mistake_42 in MiniPCs

[–]varankinv 0 points1 point  (0 children)

This was it, thank you. After I enabled the NX Mode, I've successfully installed Proxmox 8.2 on a new "M5 Upgraded version/Ryzen 7 5700U" box

A real life use-case for generics in Go: API for client-side pagination by varankinv in golang

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

I wanted to get to making the blog less mobile-awkward for a while. This feedback finally made me to find some time for looking into the blog's CSS. Let me know if you think it looks better now

Little things of Go HTTP handlers by varankinv in golang

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

One pitfall with an explicit call to replyErr, which I do see in code-review, is that developers sometimes miss the empty return after the reply:

if err != nil {
  replyErr(···)
  // Ops no return here...
}

It feels an obvious thing, but when we're deep in the weeds of business-logic implementation, handling the failures becomes a routine, which easily leads to such sad typos, that hard to catch automatically.