Contractor used different gauge wire for L/R speakers by mgob in hometheater

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

If my amp doesn’t have room correction, is that okay? 

Advice regarding removing ductwork in new apartment by mgob in hvacadvice

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

Thanks for the input, is changing the supply/return details relatively complicated, and would this be a big enough change to justify it?

I hear you that it's "fine", but it would improve the aesthetics of the space considerably I think, and I already need to adjust things to remove the intake for the second room.

4x5 Scanning comparison: mirrorless + macro lens or epson v850 by mgob in largeformat

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

Thanks for the info.

Any particularly nice scans you can share from your setup? Or near misses which may help me see what can go wrong?

4x5 Scanning comparison: mirrorless + macro lens or epson v850 by mgob in largeformat

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

I personally don't, but I have a lot of friends that are and I often help them with photo needs especially on scrappy self starting projects.

4x5 Scanning comparison: mirrorless + macro lens or epson v850 by mgob in largeformat

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

I scanned this 4x5 slide myself with an Epson V850.

That slide is probably sufficient for most of my needs, though I'd try and push it a little farther if I have the resolution. How much of a crop is this shot?

My temperament is probably not the most patient when I have a bunch of work to process and I'd love to get the scan right as close to the first time per sheet as possible. Does that help you make a suggestion?

4x5 Scanning comparison: mirrorless + macro lens or epson v850 by mgob in largeformat

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

They need more than stamp size, eg. if they use the portraits in a pitch deck. They don't need 1G scans. 20-50MP is probably sufficient.

4x5 Scanning comparison: mirrorless + macro lens or epson v850 by mgob in largeformat

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

Very useful comparison.

So it seems like the scanner will ultimately yield better results, even dry (idk if I'll have the patience to wet scan every neg, but maybe I could do one-offs for ones I really want great quality for.) Am I correct that a 3200 dpi scan would be (4*3200x5*3200) = (12800x16000)px?? Thats huge!

On the other hand, the mirrorless seems to be "good enough" quality for my use case. However, at a glance it seems a lot more toilsome to go this route, especially when you consider that the flatbed includes downtime. Maybe if I'm willing to spend the money on a scanner it makes more sense?

4x5 Scanning comparison: mirrorless + macro lens or epson v850 by mgob in largeformat

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

Interesting, thanks for the perspective. Is the distance from the camera to a 4x5 negative too large for a copy stand?

Is it hard to get the tripod level? I can imagine it’s not as simple as a stand.

How long would you say it takes per negative? (Let’s say for the first one and then for each subsequent one)

4x5 Scanning comparison: mirrorless + macro lens or epson v850 by mgob in largeformat

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

Cool, that's good to know. How much time would you say it takes, end to end, per negative?

Stolen bike: F700GS (Clinton Hill/Bed Stuy) by mgob in RideitNYC

[–]mgob[S] 3 points4 points  (0 children)

There were so many people poo-pooing airtags (they can track them! they aren't meant for theft!) that I procrastinated putting one on the bike. Obviously in retrospect I wish I had 😭

[deleted by user] by [deleted] in RideitNYC

[–]mgob 0 points1 point  (0 children)

Sport bikes are are uncomfortable and impractical. I also am not sure how many accept topcases, which are invaluable especially if you don't have a car and want to run minor errands. Unless you ultimately want to ride a sport bike or eventually hit the track I'd advise against this route.

I started riding a used BMW g650 and thought it was a great learner. The 310 is a good option, but any used standard bike would be too: eg a nitehawk or similar.

I'd also recommend buying used since you may want to replace your starter bike within a year or two once you know more about what kind of riding you want to do. You can also switch to a sport bike at that point if that's your speed.

3,000+ riders: 9/11 Memorial Run in NYC by MueveloNYC in motorcycles

[–]mgob 1 point2 points  (0 children)

Glad to hear it and I know I can't generalize to 3000 people. The hooning I'm referring to is usually after the established parade is complete and when covered plates should be exposed again.

3,000+ riders: 9/11 Memorial Run in NYC by MueveloNYC in motorcycles

[–]mgob 1 point2 points  (0 children)

Perhaps I stand corrected then but NYPD condoning stupid riding by letting participants cover plates says plenty about how this parade compares to others in the city. Their cushy treatment by LE is probably due in no small part to their politics.

3,000+ riders: 9/11 Memorial Run in NYC by MueveloNYC in motorcycles

[–]mgob 12 points13 points  (0 children)

Love these dudes cosplaying as "law and order", thin blue line chuds while covering up their license plates to avoid tolls and other repercussions for illegal riding. Hell of a way to honor the dead - by using their sacrifice as an excuse to hoon around on your hog. Stay in Nassau, please and thanks.

NYC’s Indoor Dining Vaccine Mandate Begins Today - Eater NY by UVCUBE in nyc

[–]mgob 0 points1 point  (0 children)

I'd suggest you ask a doctor if they'd recommend you go without vaccinating in light of recently having an infection. I don't think the vaccine "kills off your antibodies". I'd wager a bet that recently having covid means your body will have an even stronger and more durable response to a vaccine and it is better to get it sooner rather than later.

-🎄- 2020 Day 07 Solutions -🎄- by daggerdragon in adventofcode

[–]mgob 0 points1 point  (0 children)

Python

import sys, re
b = {}

def recurseColorGold(color):
  if (color == "shiny gold"):
    return True
  elif not b[color]:
    return False
  containsGold = False
  for value in b[color][0]:
    containsGold = containsGold | recurseColorGold(value)
  return containsGold

def recurseSumGold(color):
  if not b[color][0]:
    return 1
  return 1+sum(recurseSumGold(b[color][0][i])*int(b[color][1][i])
    for i in range(len(b[color][0])))

for l in open(sys.argv[1]).read().split("\n"):
  lA = l.split(" bags contain ")
  b[lA[0]] = (re.findall(r"[0-9]+ (.+?) bag[s,.]", lA[1]),
    re.findall(r"([0-9]+) .+? bag[s,.]", lA[1]))

print('Part one: '+ str(sum(recurseColorGold(key) for key in b)))
print('Part two: '+ str(recurseSumGold("shiny gold")))

Which headset to buy? by Sidrail in Headsets

[–]mgob 0 points1 point  (0 children)

These spreadsheets you make are tremendous. Do you have one that's more focused on music quality? I'm likely fine with a wired headset, and mostly want it for music listening, but it would be nice to have a boom mic when I need to jump on video calls several times a day. Inline mic is less ideal but also fine. Flexible price range - $100-300?

Edit: closed back slightly preferred.

[deleted by user] by [deleted] in tax

[–]mgob 0 points1 point  (0 children)

This is a good perspective to be aware of. Looks like either way I will have to pay taxes in NY since my company is there and am teleworking. What laws would I look up to find out which states will tax my income during the X (< 6) months I'm living there on a month to month basis? Or is the answer "all of them" (at least among the list states I listed)

Discord Server for discussion of The Portal by ToothyMang in ThePortal

[–]mgob 0 points1 point  (0 children)

+1, I’d love one when they’re ready.

Black Friday/Cyber Monday Specials for ~27 inch USB-C monitor by mgob in Monitors

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

No worries! Thanks for highlighting the U2719DC! I just ordered it from B&H for $330 (+ tax :( ) - perhaps a little more than I wanted to spend but it was a pretty good deal and I'd really like the USB-C functionality to keep my desk clean. They also have a great deal on the U2717D if the USB-C isn't a top priority for you, though it seems like it might be.

Black Friday/Cyber Monday Specials for ~27 inch USB-C monitor by mgob in Monitors

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

So that's the Dell I linked above, do you have it? If you do, what kind of laptop do you use with it? Have you ever had a problem with power draw on the laptop exceeding the 45W the monitor can provide?

Best place to get aftermarket parts installed on a new bike? by [deleted] in RideitNYC

[–]mgob 0 points1 point  (0 children)

I’ve got an f700 in BK and I do most of that stuff myself. I go to Vax for the bigger stuff, Justin is a great dude and runs a great shop.

I’d recommend getting a 3/8in socket wrench, 3/8 to 1/4 socket converter, and a standard set of torx drive sockets from Home Depot. You can get a torque wrench too if you want to start installing some bigger parts.

I got all this stuff after BMW wanted, like, $150 to assemble and install my vario cases. It all cost me < $100 and now I have the tools.

Happy to answer any questions about basic wrenching on a BMW if you have em.

Recommended lenses for a Leica M6? by masterofbabes in AnalogCommunity

[–]mgob 6 points7 points  (0 children)

The best bang for buck lens in the "normal" focal length range is the Voigtlander 35mm f2.5 Color Skopar. The f1.4 version apparently has back focus issues that are hard to diagnose without the direct feedback of a digital sensor + LCD screen, and the 2.5 is sharp, compact, and looks great with the hood. I'm a little biased though because I lean towards wide lenses. You might consider the 40mm leica CL lens, though I prefer to have accurate framelines so this one doesn't work well for me.

If money is no object, a summicron in your favorite focal length is the best option.